Merge pull request #6468 from lioncash/downcast
JitInterface: Remove a downcast within InitJitCore
This commit is contained in:
commit
22aba8c56d
|
@ -46,21 +46,20 @@ void DoState(PointerWrap& p)
|
|||
}
|
||||
CPUCoreBase* InitJitCore(int core)
|
||||
{
|
||||
CPUCoreBase* ptr = nullptr;
|
||||
switch (core)
|
||||
{
|
||||
#if _M_X86
|
||||
case PowerPC::CORE_JIT64:
|
||||
ptr = new Jit64();
|
||||
g_jit = new Jit64();
|
||||
break;
|
||||
#endif
|
||||
#if _M_ARM_64
|
||||
case PowerPC::CORE_JITARM64:
|
||||
ptr = new JitArm64();
|
||||
g_jit = new JitArm64();
|
||||
break;
|
||||
#endif
|
||||
case PowerPC::CORE_CACHEDINTERPRETER:
|
||||
ptr = new CachedInterpreter();
|
||||
g_jit = new CachedInterpreter();
|
||||
break;
|
||||
|
||||
default:
|
||||
|
@ -68,9 +67,8 @@ CPUCoreBase* InitJitCore(int core)
|
|||
g_jit = nullptr;
|
||||
return nullptr;
|
||||
}
|
||||
g_jit = static_cast<JitBase*>(ptr);
|
||||
g_jit->Init();
|
||||
return ptr;
|
||||
return g_jit;
|
||||
}
|
||||
|
||||
CPUCoreBase* GetCore()
|
||||
|
|
Loading…
Reference in New Issue