diff options
Diffstat (limited to 'src/libtools')
| -rwxr-xr-x | src/libtools/signals.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libtools/signals.c b/src/libtools/signals.c index 191267c4..2d3a8aed 100755 --- a/src/libtools/signals.c +++ b/src/libtools/signals.c @@ -310,8 +310,8 @@ uint64_t RunFunctionHandler(int* exit, x64_ucontext_t* sigcontext, uintptr_t fnc int oldquitonlongjmp = emu->quitonlongjmp; emu->quitonlongjmp = 2; - //EmuCall(emu, fnc); // avoid DynaCall for now - DynaCall(emu, fnc); + EmuCall(emu, fnc); // avoid DynaCall for now + //DynaCall(emu, fnc); if(nargs>6) R_RSP+=((nargs-6)*sizeof(void*)); |