From 7a5f9593629010d1cc9e7f9046aad0654412479e Mon Sep 17 00:00:00 2001 From: notaz Date: Mon, 10 Aug 2009 14:38:14 +0000 Subject: [PATCH] ff bugfix git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@745 be3aeb3a-fb24-0410-a615-afba39da0efa --- common/emu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } -- 2.39.2