diff --git a/src/common/settings.h b/src/common/settings.h index a85ad3c0a..c0f595d12 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -515,7 +515,11 @@ struct Values { SwitchableSetting use_hw_shader{true, "use_hw_shader"}; SwitchableSetting use_disk_shader_cache{true, "use_disk_shader_cache"}; SwitchableSetting shaders_accurate_mul{true, "shaders_accurate_mul"}; +#ifdef ANDROID // TODO: Fuck this -OS + SwitchableSetting use_vsync{false, "use_vsync"}; +#else SwitchableSetting use_vsync{true, "use_vsync"}; +#endif Setting use_shader_jit{true, "use_shader_jit"}; SwitchableSetting resolution_factor{1, 0, 10, "resolution_factor"}; SwitchableSetting frame_limit{100, 0, 1000, "frame_limit"};