about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/emu/x64int3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64int3.c b/src/emu/x64int3.c
index 697fe19f..349974fa 100644
--- a/src/emu/x64int3.c
+++ b/src/emu/x64int3.c
@@ -401,7 +401,7 @@ int GetTID()
 
 void print_cycle_log(int loglevel) {
     if(cycle_log) {
-        printf_log(LOG_INFO, "Last calls\n");
+        printf_log(loglevel, "Last calls\n");
         int j = (my_context->current_line+1)%cycle_log;
         for (int i=0; i<cycle_log; ++i) {
             int k = (i+j)%cycle_log;