VSync one frame earlier.

This commit is contained in:
Themaister 2012-01-08 02:18:08 +01:00
parent 08aaa1021c
commit d186e14eeb

View File

@ -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;