1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-04 10:03:36 +00:00

Remove glFinish() from VI_UpdateScreen().

This commit is contained in:
Sergey Lipskiy 2015-03-31 22:21:01 +06:00
parent 4f338b96c8
commit d11f7e0b5e

4
VI.cpp
View File

@ -86,8 +86,6 @@ void VI_UpdateScreen()
if (VI.lastOrigin == -1) // Workaround for Mupen64Plus issue with initialization
isGLError();
glFinish();
OGLVideo & ogl = video();
if (ogl.changeWindow())
return;
@ -164,6 +162,4 @@ void VI_UpdateScreen()
glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
glClear(GL_COLOR_BUFFER_BIT);
}
glFinish();
}