Merge branch 'pris_accurate-gif-delay' into 'master'

More accurate GIF delay

See merge request STJr/SRB2!276
This commit is contained in:
Monster Iestyn 2018-10-14 15:44:33 -04:00
commit b720cb10dc
1 changed files with 3 additions and 1 deletions

View File

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