config: Add a setting for graphics V-Sync.

This commit is contained in:
bunnei 2016-08-25 18:20:47 -04:00
parent 2267f98941
commit 08ad9b36d4
9 changed files with 20 additions and 1 deletions

View file

@ -22,6 +22,7 @@ std::unique_ptr<RendererBase> g_renderer; ///< Renderer plugin
std::atomic<bool> g_hw_renderer_enabled;
std::atomic<bool> g_shader_jit_enabled;
std::atomic<bool> g_scaled_resolution_enabled;
std::atomic<bool> g_vsync_enabled;
/// Initialize the video core
bool Init(EmuWindow* emu_window) {