Reapply settings changes on top of #209

This commit is contained in:
Max Roncace
2026-04-05 17:34:18 -04:00
committed by PJB3005
parent cba63d177b
commit f2be41355c
26 changed files with 216 additions and 200 deletions
+2 -2
View File
@@ -1163,7 +1163,7 @@ void mDoGph_gInf_c::bloom_c::remove() {
void mDoGph_gInf_c::bloom_c::draw() {
#if TARGET_PC
if (!dusk::settings::game::enableBloom) {
if (!dusk::getSettings().game.enableBloom) {
return;
}
#endif
@@ -2117,7 +2117,7 @@ int mDoGph_Painter() {
#endif
#if TARGET_PC
if (dusk::settings::game::enableMirrorMode)
if (dusk::getSettings().game.enableMirrorMode)
#elif PLATFORM_WII
if (data_8053a730)
#endif
+1 -1
View File
@@ -279,7 +279,7 @@ static const char* CalculateConfigPath() {
// PC ENTRY POINT
// =========================================================================
int game_main(int argc, char* argv[]) {
dusk::settings::Register();
dusk::registerSettings();
dusk::config::FinishRegistration();
cxxopts::ParseResult parsed_arg_options;