mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix order of operations messups by adding brackets
This commit is contained in:
parent
a6e3b3eb16
commit
9481e7d358
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue