mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Qt/GameConfigWidget: Fix Deterministic dual core not saving if changed to "Not Set"
This commit is contained in:
parent
3c95c175d0
commit
694f0842ce
1 changed files with 4 additions and 0 deletions
|
@ -304,6 +304,10 @@ void GameConfigWidget::SaveSettings()
|
|||
m_gameini_local.GetOrCreateSection("Core")->Set("GPUDeterminismMode", determinism_mode);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
m_gameini_local.DeleteKey("Core", "GPUDeterminismMode");
|
||||
}
|
||||
|
||||
// Stereoscopy
|
||||
int depth_percentage = m_depth_slider->value();
|
||||
|
|
Loading…
Add table
Reference in a new issue