about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index 7007f63c..c7c7bf2d 100644
--- a/src/core.c
+++ b/src/core.c
@@ -2445,7 +2445,7 @@ int emulate(x64emu_t* emu, elfheader_t* elf_header)
         Push64(emu, my_context->exit_bridge);  // push to pop it just after
         SetRDX(emu, Pop64(emu));    // RDX is exit function
     }
-    Run(emu, 0);
+    DynaRun(emu);
     // Get EAX
     int ret = GetEAX(emu);
     printf_log(LOG_DEBUG, "Emulation finished, EAX=%d\n", ret);