diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-03-10 18:02:21 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-03-10 18:02:21 +0100 |
| commit | 02161dc4d761cf209095b614534db908a140384a (patch) | |
| tree | 5c1684fba444768e3a5ac528474529e69e03d18f /src/libtools | |
| parent | a62f6860247b57b3a27500cd88c9d42e388a782b (diff) | |
| download | box64-02161dc4d761cf209095b614534db908a140384a.tar.gz box64-02161dc4d761cf209095b614534db908a140384a.zip | |
Better functions name resolving when using TRACE, and fixed some printf stuff again
Diffstat (limited to 'src/libtools')
| -rwxr-xr-x | src/libtools/sdl1rwops.c | 2 | ||||
| -rwxr-xr-x | src/libtools/sdl2rwops.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libtools/sdl1rwops.c b/src/libtools/sdl1rwops.c index bdb26c83..d4139e7d 100755 --- a/src/libtools/sdl1rwops.c +++ b/src/libtools/sdl1rwops.c @@ -106,7 +106,7 @@ SDL1_RWops_t* AddNativeRW(x64emu_t* emu, SDL1_RWops_t* ops) // get or create wrapper, add it to map and change to the emulated one if rw #define GO(A, W) \ - fnc = AddCheckBridge(system, W, my_native_##A, 0); \ + fnc = AddCheckBridge(system, W, my_native_##A, 0, NULL); \ newrw->A = (sdl1_##A)fnc; GO(seek, iFpii) diff --git a/src/libtools/sdl2rwops.c b/src/libtools/sdl2rwops.c index 3874ce60..cc7c5dbc 100755 --- a/src/libtools/sdl2rwops.c +++ b/src/libtools/sdl2rwops.c @@ -113,7 +113,7 @@ SDL2_RWops_t* AddNativeRW2(x64emu_t* emu, SDL2_RWops_t* ops) // get or create wrapper, add it to map and change to the emulated one if rw #define GO(A, W) \ - fnc = AddCheckBridge(system, W, my2_native_##A, 0); \ + fnc = AddCheckBridge(system, W, my2_native_##A, 0, NULL); \ newrw->A = (sdl2_##A)fnc; GO(size, IFp) |