diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-06-25 13:51:22 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-06-25 13:51:22 +0200 |
| commit | 53f84817ba66cef2697d38061253be899dfe868f (patch) | |
| tree | 511dcf157330c9c0237d7bee18e579bb02d88bdb /src | |
| parent | 221527e0e14a5adbc59f718a20e5863b125b57bb (diff) | |
| download | box64-53f84817ba66cef2697d38061253be899dfe868f.tar.gz box64-53f84817ba66cef2697d38061253be899dfe868f.zip | |
[DYNAREC] Fixed a typo when turning off Dynarec
Diffstat (limited to 'src')
| -rwxr-xr-x | src/main.c | 2 |
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) { |