bump ftpsrv and haze versions (ftpsrv 85b3cf0, haze 0be1523). haze now has 4gb+ support.

This commit is contained in:
ITotalJustice
2025-07-31 01:23:50 +01:00
parent 6b57619871
commit bd3ad8782a
3 changed files with 5 additions and 6 deletions

View File

@@ -159,14 +159,13 @@ set(FETCHCONTENT_QUIET FALSE)
FetchContent_Declare(ftpsrv
GIT_REPOSITORY https://github.com/ITotalJustice/ftpsrv.git
# GIT_TAG 1.2.2
GIT_TAG 8782f6b
GIT_TAG 85b3cf0
SOURCE_SUBDIR NONE
)
FetchContent_Declare(libhaze
GIT_REPOSITORY https://github.com/ITotalJustice/libhaze.git
GIT_TAG 1f11184
GIT_TAG 0be1523
)
FetchContent_Declare(libpulsar

View File

@@ -360,9 +360,9 @@ bool Init() {
.func = &g_vfs_install,
};
vfs_nx_init(&custom, mount_devices, save_writable, mount_bis);
vfs_nx_init(&custom, mount_devices, save_writable, mount_bis, false);
#else
vfs_nx_init(NULL, mount_devices, save_writable, mount_bis);
vfs_nx_init(NULL, mount_devices, save_writable, mount_bis, false);
#endif
Result rc;

View File

@@ -27,7 +27,7 @@ struct InstallSharedData {
};
#endif
constexpr int THREAD_PRIO = PRIO_PREEMPTIVE;
constexpr int THREAD_PRIO = 0x20;
constexpr int THREAD_CORE = 2;
std::atomic_bool g_should_exit = false;
bool g_is_running{false};