diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-06-22 16:33:33 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-06-22 16:33:33 +0200 |
| commit | 6b0a1d286a0ff9a01370fb79320f85768e313549 (patch) | |
| tree | e07d1e7f77aea04507152406061332ece0bcb57e /src/tools | |
| parent | e78cd0d62378c6de1bdc539626e0b27485b3c20f (diff) | |
| download | box64-6b0a1d286a0ff9a01370fb79320f85768e313549.tar.gz box64-6b0a1d286a0ff9a01370fb79320f85768e313549.zip | |
[32BITS][DYNAREC] Preparing Dynarec to handle 32bits code
Diffstat (limited to 'src/tools')
| -rwxr-xr-x | src/tools/bridge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/bridge.c b/src/tools/bridge.c index 73bb8197..bace21ae 100755 --- a/src/tools/bridge.c +++ b/src/tools/bridge.c @@ -167,7 +167,7 @@ uintptr_t AddAutomaticBridge(x64emu_t* emu, bridge_t* bridge, wrapper_t w, void* #ifdef DYNAREC // now, check if dynablock at native address exist if(box64_dynarec) - DBAlternateBlock(emu, (uintptr_t)fnc, ret); + DBAlternateBlock(emu, (uintptr_t)fnc, ret, 0); // function wrapping is exclusive to 64bits on box64 #endif } return ret; |