about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2022-06-25 13:51:22 +0200
committerptitSeb <sebastien.chev@gmail.com>2022-06-25 13:51:22 +0200
commit53f84817ba66cef2697d38061253be899dfe868f (patch)
tree511dcf157330c9c0237d7bee18e579bb02d88bdb /src
parent221527e0e14a5adbc59f718a20e5863b125b57bb (diff)
downloadbox64-53f84817ba66cef2697d38061253be899dfe868f.tar.gz
box64-53f84817ba66cef2697d38061253be899dfe868f.zip
[DYNAREC] Fixed a typo when turning off Dynarec
Diffstat (limited to 'src')
-rwxr-xr-xsrc/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index b13fa827..3b4d2946 100755
--- a/src/main.c
+++ b/src/main.c
@@ -380,7 +380,7 @@ void LoadLogEnv()
             if(p[0]>='0' && p[0]<='1')
                 box64_dynarec = p[0]-'0';
         }
-        printf_log(LOG_INFO, "Dynarec is %s\n", box64_dynarec?"on":"dff");
+        printf_log(LOG_INFO, "Dynarec is %s\n", box64_dynarec?"on":"off");
     }
     p = getenv("BOX64_DYNAREC_FORCED");
     if(p) {