games/gb: fix typo in the routine to load timer data (thanks qwx)

This commit is contained in:
aiju 2017-02-11 23:52:35 +01:00
parent 7d4a1e3643
commit 6176b55759

View file

@ -127,7 +127,7 @@ loadsave(char *file)
readn(savefd, back, nback);
if((feat & FEATTIM) != 0){
readn(savefd, tim, TIMERSIZ);
timerload(buf);
timerload(tim);
}
atexit(flushback);
free(buf);