From 1c937adb9e795f43124d5ce052f07b8185063255 Mon Sep 17 00:00:00 2001 From: zeromus Date: Sun, 27 Jan 2019 12:24:35 -0500 Subject: [PATCH] fix #250, probably --- desmume/src/commandline.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/desmume/src/commandline.cpp b/desmume/src/commandline.cpp index 0bdf5ca47..069d9fdbb 100644 --- a/desmume/src/commandline.cpp +++ b/desmume/src/commandline.cpp @@ -338,7 +338,9 @@ bool CommandLine::parse(int argc,char **argv) case OPT_RTC_HOUR: _rtc_hour = atoi(optarg); break; //sync settings + #ifdef HAVE_JIT case OPT_JIT_SIZE: _jit_size = atoi(optarg); break; + #endif //system equipment case OPT_CONSOLE_TYPE: console_type = optarg; break;