diff options
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index 9ed59359..31075af4 100644 --- a/src/main.c +++ b/src/main.c @@ -608,11 +608,11 @@ void LoadLogEnv() p = getenv("BOX64_DYNAREC_STRONGMEM"); if(p) { if(strlen(p)==1) { - if(p[0]>='0' && p[0]<='3') + if(p[0]>='0' && p[0]<='4') box64_dynarec_strongmem = p[0]-'0'; } if(box64_dynarec_strongmem) - printf_log(LOG_INFO, "Dynarec will try to emulate a strong memory model%s\n", (box64_dynarec_strongmem==1)?" with limited performance loss":((box64_dynarec_strongmem==3)?" with more performance loss":"")); + printf_log(LOG_INFO, "Dynarec will try to emulate a strong memory model%s\n", (box64_dynarec_strongmem==1)?" with limited performance loss":((box64_dynarec_strongmem>1)?" with more performance loss":"")); } p = getenv("BOX64_DYNAREC_X87DOUBLE"); if(p) { |