about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2025-10-03 10:35:08 +0200
committerptitSeb <sebastien.chev@gmail.com>2025-10-03 10:35:08 +0200
commit5768989e54ef596b77449f11e1910186a835e422 (patch)
treec4a380c09d29eb9933f9e3b920782fb8b5df6575 /src/include
parentc4c9f1b8cdc3d45a3f17b97556f43cb2133605d7 (diff)
downloadbox64-5768989e54ef596b77449f11e1910186a835e422.tar.gz
box64-5768989e54ef596b77449f11e1910186a835e422.zip
[DYNAREC] Fixe a speed regression introduced with 3fe020572dfc0636ab82bae962c3514134e9e128 (for #3038)
Diffstat (limited to 'src/include')
-rw-r--r--src/include/box64cpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/box64cpu.h b/src/include/box64cpu.h
index b565e06f..72df2c69 100644
--- a/src/include/box64cpu.h
+++ b/src/include/box64cpu.h
@@ -3,7 +3,7 @@
 
 typedef struct x64emu_s x64emu_t;
 
-int Run(x64emu_t *emu, int step, int need_tf);
+int Run(x64emu_t *emu, int step);
 void EmuCall(x64emu_t* emu, uintptr_t addr);
 void StopEmu(x64emu_t* emu, const char* reason, int is32bits);
 void DynaRun(x64emu_t *emu);