about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-07-08 14:48:20 +0200
committerptitSeb <sebastien.chev@gmail.com>2021-07-08 14:48:20 +0200
commit649b7772f18e485d89cb72935b6d4b14203b39f5 (patch)
treed8bca180cefa60896a772a0cb71ec5ba030f0d4c /src
parentfe6304b7cd752fbd8abd6d7aa86aeeb6ac8b9b66 (diff)
downloadbox64-649b7772f18e485d89cb72935b6d4b14203b39f5.tar.gz
box64-649b7772f18e485d89cb72935b6d4b14203b39f5.zip
Fixed BOX64_JITGDB=2 that wasn't working
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 1eb40c20..4fcbbcd9 100755
--- a/src/main.c
+++ b/src/main.c
@@ -345,7 +345,7 @@ void LoadLogEnv()
     p = getenv("BOX64_JITGDB");
         if(p) {
         if(strlen(p)==1) {
-            if(p[0]>='0' && p[0]<='0'+1)
+            if(p[0]>='0' && p[0]<='0'+2)
                 jit_gdb = p[0]-'0';
         }
         if(jit_gdb)