Skip to content

Commit

Permalink
PowerPC: fix a cast warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Tilka committed Oct 9, 2018
1 parent 7cfba73 commit dfe8305
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Core/Core/PowerPC/PowerPC.cpp
Expand Up @@ -191,7 +191,8 @@ static void InitializeCPUCore(CPUCore cpu_core)
s_cpu_core_base = JitInterface::InitJitCore(cpu_core);
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());
}
break;
Expand Down

0 comments on commit dfe8305

Please sign in to comment.