From 53f84817ba66cef2697d38061253be899dfe868f Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sat, 25 Jun 2022 13:51:22 +0200 Subject: [DYNAREC] Fixed a typo when turning off Dynarec --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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) { -- cgit 1.4.1