Fix order of operations messups by adding brackets

This commit is contained in:
Monster Iestyn 2018-09-16 20:25:07 +01:00
parent 4ada0b0a9e
commit 1b7b1f3f79
1 changed files with 1 additions and 1 deletions

View File

@ -492,7 +492,7 @@ static void GIF_framewrite(void)
// screen regions are handled in GIF_lzw
{
int d1 = (int)((100.0/NEWTICRATE)*gif_frames+1);
int d1 = (int)((100.0/NEWTICRATE)*(gif_frames+1));
int d2 = (int)((100.0/NEWTICRATE)*(gif_frames));
UINT16 delay = d1-d2;
INT32 startline;