mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-03 11:54:27 +00:00
PowerPC: fix a cast warning
This commit is contained in:
parent
7cfba7397c
commit
dfe8305ae7
@ -191,7 +191,8 @@ static void InitializeCPUCore(CPUCore cpu_core)
|
|||||||
s_cpu_core_base = JitInterface::InitJitCore(cpu_core);
|
s_cpu_core_base = JitInterface::InitJitCore(cpu_core);
|
||||||
if (!s_cpu_core_base) // Handle Situations where JIT core isn't available
|
if (!s_cpu_core_base) // Handle Situations where JIT core isn't available
|
||||||
{
|
{
|
||||||
WARN_LOG(POWERPC, "CPU core %d not available. Falling back to default.", cpu_core);
|
WARN_LOG(POWERPC, "CPU core %d not available. Falling back to default.",
|
||||||
|
static_cast<int>(cpu_core));
|
||||||
s_cpu_core_base = JitInterface::InitJitCore(DefaultCPUCore());
|
s_cpu_core_base = JitInterface::InitJitCore(DefaultCPUCore());
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user