diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-09-01 13:07:47 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-09-01 13:07:47 +0200 |
| commit | 9178effd9f837b52107c1943e9736cf2dfc5d40d (patch) | |
| tree | 10794e2361183a359ab92d31c081a31e299c125c /src/tools | |
| parent | cce9e280ce2ab54eeba48729c51a88e2d2c5e770 (diff) | |
| download | box64-9178effd9f837b52107c1943e9736cf2dfc5d40d.tar.gz box64-9178effd9f837b52107c1943e9736cf2dfc5d40d.zip | |
[BOX32] More wrapped function and a few fixes for steamclient.so (still crashing)
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/callback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/callback.c b/src/tools/callback.c index 661a3b13..e0df5cfc 100644 --- a/src/tools/callback.c +++ b/src/tools/callback.c @@ -236,7 +236,7 @@ uint64_t RunFunctionFmt(uintptr_t fnc, const char* fmt, ...) if(box64_is32bits) { R_RSP = R_EBP; // mov esp, ebp R_RBP = Pop_32(emu); // pop ebp - } + } else #endif { R_RSP = R_RBP; // mov rsp, rbp |