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

Move RSP.DList increment from RSP_ProcessDList() to OGLVideo::swapBuffers().

Now frame count works for LLE mode.
This commit is contained in:
Sergey Lipskiy 2015-02-27 18:00:26 +06:00
parent 8bd1b96e3c
commit 917225d783
2 changed files with 1 additions and 1 deletions

View File

@ -129,6 +129,7 @@ void OGLVideo::swapBuffers()
gDPSetRenderMode(0, 0);
gDPSetTextureLUT(G_TT_NONE);
gDPSetAlphaCompare(G_AC_NONE);
++RSP.DList;
}
void OGLVideo::setCaptureScreen(const char * const _strDirectory)

View File

@ -217,7 +217,6 @@ void RSP_ProcessDList()
FrameBuffer_CopyDepthBuffer( gDP.colorImage.address );
RSP.busy = FALSE;
RSP.DList++;
gSP.changed |= CHANGED_COLORBUFFER;
}