Core: Change default CPU to dyncom.
This commit is contained in:
parent
031237e52c
commit
853b46c681
3 changed files with 4 additions and 4 deletions
|
@ -53,10 +53,10 @@ int Init() {
|
|||
g_sys_core = new ARM_Interpreter();
|
||||
|
||||
switch (Settings::values.cpu_core) {
|
||||
case CPU_FastInterpreter:
|
||||
case CPU_Interpreter:
|
||||
g_app_core = new ARM_DynCom();
|
||||
break;
|
||||
case CPU_Interpreter:
|
||||
case CPU_OldInterpreter:
|
||||
default:
|
||||
g_app_core = new ARM_Interpreter();
|
||||
break;
|
||||
|
|
|
@ -13,7 +13,7 @@ namespace Core {
|
|||
|
||||
enum CPUCore {
|
||||
CPU_Interpreter,
|
||||
CPU_FastInterpreter
|
||||
CPU_OldInterpreter,
|
||||
};
|
||||
|
||||
extern ARM_Interface* g_app_core; ///< ARM11 application core
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue