about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-04-19 20:36:39 +0000
committerptitSeb <sebastien.chev@gmail.com>2023-04-19 20:37:20 +0000
commit9aca360fe5bb1496324cfcbf2a41fafcf5f2fc63 (patch)
treecd94c07be9472c8e66039e2479b7105c3c0925fb /src/include
parent5d92a3a89119e8f52886b1d7751755e1b8b3ddf3 (diff)
downloadbox64-9aca360fe5bb1496324cfcbf2a41fafcf5f2fc63.tar.gz
box64-9aca360fe5bb1496324cfcbf2a41fafcf5f2fc63.zip
[DYNAREC] Fixed signature of x64test function
Diffstat (limited to 'src/include')
-rwxr-xr-xsrc/include/dynarec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/dynarec.h b/src/include/dynarec.h
index c304cf1e..677427bc 100755
--- a/src/include/dynarec.h
+++ b/src/include/dynarec.h
@@ -5,7 +5,7 @@ typedef struct x64emu_s x64emu_t;
 
 void DynaCall(x64emu_t* emu, uintptr_t addr); // try to use DynaRec... Fallback to EmuCall if no dynarec available
 
-void x64test_init(x64emu_t* ref);
+void x64test_init(x64emu_t* ref, uintptr_t ip);
 void x64test_check(x64emu_t* ref);
 
 #endif // __DYNAREC_H_
\ No newline at end of file