This commit is contained in:
James R 2020-12-10 03:06:41 -08:00
parent 2ab71571aa
commit 0df5d8ff58
1 changed files with 1 additions and 1 deletions

View File

@ -621,7 +621,7 @@ static void GIF_framewrite(void)
{
float delayf = ceil(100.0f/NEWTICRATE);
delay = (UINT16)((I_GetTimeMicros() - gif_prevframeus)/10/1000);
delay = (UINT16)I_PreciseToMicros((I_GetPreciseTime() - gif_prevframetime))/10/1000;
if (delay < (UINT16)(delayf))
delay = (UINT16)(delayf);