mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
JitInterface: Remove a downcast within InitJitCore
This isn't necessary as JitBase is already within the type hierarchy that CPUCoreBase is.
This commit is contained in:
@ -46,21 +46,20 @@ void DoState(PointerWrap& p)
|
|||||||
}
|
}
|
||||||
CPUCoreBase* InitJitCore(int core)
|
CPUCoreBase* InitJitCore(int core)
|
||||||
{
|
{
|
||||||
CPUCoreBase* ptr = nullptr;
|
|
||||||
switch (core)
|
switch (core)
|
||||||
{
|
{
|
||||||
#if _M_X86
|
#if _M_X86
|
||||||
case PowerPC::CORE_JIT64:
|
case PowerPC::CORE_JIT64:
|
||||||
ptr = new Jit64();
|
g_jit = new Jit64();
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
#if _M_ARM_64
|
#if _M_ARM_64
|
||||||
case PowerPC::CORE_JITARM64:
|
case PowerPC::CORE_JITARM64:
|
||||||
ptr = new JitArm64();
|
g_jit = new JitArm64();
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
case PowerPC::CORE_CACHEDINTERPRETER:
|
case PowerPC::CORE_CACHEDINTERPRETER:
|
||||||
ptr = new CachedInterpreter();
|
g_jit = new CachedInterpreter();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
@ -68,9 +67,8 @@ CPUCoreBase* InitJitCore(int core)
|
|||||||
g_jit = nullptr;
|
g_jit = nullptr;
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
g_jit = static_cast<JitBase*>(ptr);
|
|
||||||
g_jit->Init();
|
g_jit->Init();
|
||||||
return ptr;
|
return g_jit;
|
||||||
}
|
}
|
||||||
|
|
||||||
CPUCoreBase* GetCore()
|
CPUCoreBase* GetCore()
|
||||||
|
Reference in New Issue
Block a user