Small fixes

This commit is contained in:
jdflyer
2026-08-19 00:19:11 -07:00
parent 21bc055552
commit 2f0cb26ceb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -147,7 +147,7 @@ constinit const ServiceModule g_gamemodeModule{
.majorVersion = GAMEMODE_SERVICE_MAJOR, .majorVersion = GAMEMODE_SERVICE_MAJOR,
.minorVersion = GAMEMODE_SERVICE_MINOR, .minorVersion = GAMEMODE_SERVICE_MINOR,
.service = &s_gamemodeService, .service = &s_gamemodeService,
.modDetached = gamemode_impl::gamemode_remove_mod, .modDeactivating = gamemode_impl::gamemode_remove_mod,
}; };
} // namespace dusk::mods::svc } // namespace dusk::mods::svc
+1 -1
View File
@@ -502,7 +502,7 @@ static void log_build_info() {
DuskLog.info("Platform: {}", BOREALIS_PLATFORM_NAME); DuskLog.info("Platform: {}", BOREALIS_PLATFORM_NAME);
} }
static void mods_init(const std::string& mods_dir) { static void mods_init(const std::filesystem::path& mods_dir) {
// Mod search directories, highest priority first: user dir (--mods replaces it), then // Mod search directories, highest priority first: user dir (--mods replaces it), then
// mods/ next to the app, then install-bundled mods inside the app bundle. // mods/ next to the app, then install-bundled mods inside the app bundle.
{ {