X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=common%2Femu.c;h=88d80b7e9c742bdeb00b826e0281114c7e8df70b;hb=7a5f9593629010d1cc9e7f9046aad0654412479e;hp=08dbe0bcf3f65dbfb22fb742edcecf59861cf165;hpb=85bd209c99d9c50e99a2ba0a797f68c7b546d96a;p=libpicofe.git 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); } }