This commit is contained in:
Cacodemon345
2025-07-08 15:55:50 +06:00
parent 283ba78090
commit 4680d758a6
2 changed files with 7 additions and 7 deletions

View File

@@ -1714,7 +1714,7 @@ pc_run(void)
/* Run a block of code. */
startblit();
cpu_exec((int32_t) cpu_s->rspeed / 100);
cpu_exec((int32_t) cpu_s->rspeed / 1000);
ack_pause();
#ifdef USE_GDBSTUB /* avoid a KBC FIFO overflow when CPU emulation is stalled */
if (gdbstub_step == GDBSTUB_EXEC) {
@@ -1729,7 +1729,7 @@ pc_run(void)
/* Done with this frame, update statistics. */
framecount++;
if (++framecountx >= 100) {
if (++framecountx >= 1000) {
framecountx = 0;
frames = 0;
}