diff options
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/Src/CoreParameter.cpp | 3 | ||||
| -rw-r--r-- | Source/Core/Core/Src/CoreParameter.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/Core/Src/CoreParameter.cpp b/Source/Core/Core/Src/CoreParameter.cpp index 78029ced2f..bfa8f5d896 100644 --- a/Source/Core/Core/Src/CoreParameter.cpp +++ b/Source/Core/Core/Src/CoreParameter.cpp @@ -20,6 +20,7 @@ SCoreStartupParameter::SCoreStartupParameter() : hInstance(0), + bEnableDebugging(false), bAutomaticStart(false), bBootToPause(false), bJITNoBlockCache(false), bJITBlockLinking(true), bJITOff(false), bJITLoadStoreOff(false), bJITLoadStorelXzOff(false), @@ -54,6 +55,8 @@ SCoreStartupParameter::SCoreStartupParameter() void SCoreStartupParameter::LoadDefaults() { bEnableDebugging = false; + bAutomaticStart = false; + bBootToPause = false; iCPUCore = 1; bCPUThread = false; bSkipIdle = false; diff --git a/Source/Core/Core/Src/CoreParameter.h b/Source/Core/Core/Src/CoreParameter.h index 13b3ccb6f4..23d1b96481 100644 --- a/Source/Core/Core/Src/CoreParameter.h +++ b/Source/Core/Core/Src/CoreParameter.h @@ -94,6 +94,7 @@ struct SCoreStartupParameter // 0 = Interpreter // 1 = Jit // 2 = JitIL + // 3 = JIT ARM int iCPUCore; // JIT (shared between JIT and JITIL) |
