mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Core: Use an enum for indicating CPU cores
This commit is contained in:
@ -116,10 +116,14 @@ struct SCoreStartupParameter
|
||||
bool bAutomaticStart;
|
||||
bool bBootToPause;
|
||||
|
||||
// 0 = Interpreter
|
||||
// 1 = Jit
|
||||
// 2 = JitIL
|
||||
// 3 = JIT ARM
|
||||
enum
|
||||
{
|
||||
CORE_INTERPRETER,
|
||||
CORE_JIT64,
|
||||
CORE_JITIL64,
|
||||
CORE_JITARM,
|
||||
CORE_JITARM64
|
||||
};
|
||||
int iCPUCore;
|
||||
|
||||
// JIT (shared between JIT and JITIL)
|
||||
|
Reference in New Issue
Block a user