This commit is contained in:
Paul 2000-12-21 15:51:24 +00:00
parent 9e0c518099
commit 8649d25cff

View File

@ -402,6 +402,12 @@ if(ScreenClipBox==2)
int fc=FrameCounter;
s_vblsThisFrame=fc-s_lastFrameCounter;
s_lastFrameCounter=fc;
// Can get 0 vbls during start up, and it breaks things
if(s_vblsThisFrame==0)
{
s_vblsThisFrame=1;
}
}