diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-03-13 10:06:12 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-03-13 10:06:12 +0100 |
| commit | ca345d7f55135ac698106b8a9a835ddc8ea10d1b (patch) | |
| tree | 3e1706015409886cbf8cbb767ab37da181eb7742 /src/emu | |
| parent | 066410a31de7893e1c96a167e1f7d9a9350997f9 (diff) | |
| download | box64-ca345d7f55135ac698106b8a9a835ddc8ea10d1b.tar.gz box64-ca345d7f55135ac698106b8a9a835ddc8ea10d1b.zip | |
Added SDL2_mixer, SDL2_image, SDL2_ttf2 and SMPEG2 wrapped libs, plus a few more libc wrapped functions
Diffstat (limited to 'src/emu')
| -rwxr-xr-x | src/emu/x64int3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64int3.c b/src/emu/x64int3.c index d2ab7336..a138ef0e 100755 --- a/src/emu/x64int3.c +++ b/src/emu/x64int3.c @@ -96,7 +96,7 @@ void x64Int3(x64emu_t* emu) s = GetNativeName((void*)addr); if(addr==(uintptr_t)PltResolver) { snprintf(buff, 256, "%s", " ... "); - } else if(strstr(s, "__open")==s || strcmp(s, "open ")==0) { + } else if(strstr(s, "__open")==s || !strcmp(s, "open") || !strcmp(s, "open ")) { tmp = (char*)(R_RDI); snprintf(buff, 255, "%04d|%p: Calling %s(\"%s\", %d (,%d))", tid, *(void**)(R_RSP), s, (tmp)?tmp:"(nil)", (int)(R_ESI), (int)(R_EDX)); perr = 1; |