allow ForceWindowsCE option to be used in per-game config

Issue #252
This commit is contained in:
Flyinghead 2022-06-24 13:27:21 +02:00
parent 76508146ae
commit 907131b7f5
1 changed files with 6 additions and 0 deletions

View File

@ -652,6 +652,12 @@ void loadGameSpecificSettings()
// Reload per-game settings // Reload per-game settings
config::Settings::instance().load(true); config::Settings::instance().load(true);
if (config::ForceWindowsCE)
{
config::ExtraDepthScale.override(0.1f);
config::FullMMU.override(true);
}
} }
void Emulator::step() void Emulator::step()