diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-07-08 14:48:20 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-07-08 14:48:20 +0200 |
| commit | 649b7772f18e485d89cb72935b6d4b14203b39f5 (patch) | |
| tree | d8bca180cefa60896a772a0cb71ec5ba030f0d4c /src | |
| parent | fe6304b7cd752fbd8abd6d7aa86aeeb6ac8b9b66 (diff) | |
| download | box64-649b7772f18e485d89cb72935b6d4b14203b39f5.tar.gz box64-649b7772f18e485d89cb72935b6d4b14203b39f5.zip | |
Fixed BOX64_JITGDB=2 that wasn't working
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 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) |