core: Change default value of simulate GPU timings to false (#2274)

This commit is contained in:
PabloMK7 2026-07-09 13:58:07 +02:00 committed by GitHub
parent 31e4ecea58
commit c2dd5f3bea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -128,7 +128,7 @@ enum class BooleanSetting(
SIMULATE_3DS_GPU_TIMINGS(
SettingKeys.simulate_3ds_gpu_timings(),
Settings.SECTION_RENDERER,
true
false
);
override var boolean: Boolean = defaultValue

View File

@ -554,7 +554,7 @@ struct Values {
Keys::texture_sampling};
SwitchableSetting<u16, true> delay_game_render_thread_us{0, 0, 65000,
Keys::delay_game_render_thread_us};
SwitchableSetting<bool> simulate_3ds_gpu_timings{true, Keys::simulate_3ds_gpu_timings};
SwitchableSetting<bool> simulate_3ds_gpu_timings{false, Keys::simulate_3ds_gpu_timings};
SwitchableSetting<LayoutOption> layout_option{LayoutOption::Default, Keys::layout_option};
SwitchableSetting<bool> swap_screen{false, Keys::swap_screen};