mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-05 06:47:45 -04:00
ff bugfix
git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@745 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
85bd209c99
commit
7a5f959362
1 changed files with 1 additions and 1 deletions
|
@ -1338,7 +1338,7 @@ void emu_loop(void)
|
||||||
if (!(currentConfig.EmuOpt & EOPT_NO_FRMLIMIT)) {
|
if (!(currentConfig.EmuOpt & EOPT_NO_FRMLIMIT)) {
|
||||||
timestamp = get_ticks();
|
timestamp = get_ticks();
|
||||||
diff = timestamp - timestamp_base;
|
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);
|
plat_wait_till_us(timestamp_base + diff_lim);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue