Update m_anigif.c

Remember gif_frames starts at 0
This commit is contained in:
PrisimaTheFox 2018-09-09 23:33:51 -05:00 committed by Monster Iestyn
parent d26ba2ee54
commit 4ada0b0a9e
1 changed files with 2 additions and 2 deletions

View File

@ -492,8 +492,8 @@ static void GIF_framewrite(void)
// screen regions are handled in GIF_lzw
{
int d1 = (int)((100.0/NEWTICRATE)*gif_frames);
int d2 = (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;