From: notaz Date: Mon, 10 Aug 2009 14:38:14 +0000 (+0000) Subject: ff bugfix X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a5f9593629010d1cc9e7f9046aad0654412479e;p=libpicofe.git ff bugfix git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@745 be3aeb3a-fb24-0410-a615-afba39da0efa --- diff --git a/common/emu.c b/common/emu.c index 08dbe0b..88d80b7 100644 --- a/common/emu.c +++ b/common/emu.c @@ -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); } }