mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-07-09 17:24:49 -06:00
core: Change default value of simulate GPU timings to false (#2274)
This commit is contained in:
parent
31e4ecea58
commit
c2dd5f3bea
@ -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
|
||||
|
||||
@ -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};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user