ff bugfix

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@745 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2009-08-10 14:38:14 +00:00
parent bcc9eda077
commit 0d83abe234

View file

@ -1338,7 +1338,7 @@ void emu_loop(void)
if (!(currentConfig.EmuOpt & EOPT_NO_FRMLIMIT)) {
timestamp = get_ticks();
diff = timestamp - timestamp_base;
if (diff < diff_lim) // we are too fast
if (!reset_timing && diff < diff_lim) // we are too fast
plat_wait_till_us(timestamp_base + diff_lim);
}
}