mirror of
https://github.com/libretro/RetroArch
synced 2025-04-17 02:43:03 +00:00
VSync one frame earlier.
This commit is contained in:
parent
08aaa1021c
commit
d186e14eeb
@ -247,7 +247,7 @@ static bool wii_frame(void *data, const void *frame,
|
||||
GX_Flush();
|
||||
|
||||
g_render_framebuf++;
|
||||
if (g_vsync && g_render_framebuf > g_vi_framebuf + 2)
|
||||
if (g_vsync && g_render_framebuf >= g_vi_framebuf + 2)
|
||||
VIDEO_WaitVSync();
|
||||
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user