diff --git a/Source/Core/Core/PowerPC/PowerPC.cpp b/Source/Core/Core/PowerPC/PowerPC.cpp index 8abac6ae87..174406d1ce 100644 --- a/Source/Core/Core/PowerPC/PowerPC.cpp +++ b/Source/Core/Core/PowerPC/PowerPC.cpp @@ -30,7 +30,7 @@ namespace PowerPC { // STATE_TO_SAVE -PowerPCState ppcState; +PowerPCState ppcState{}; static CPUCoreBase* s_cpu_core_base = nullptr; static bool s_cpu_core_base_is_injected = false; @@ -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(cpu_core)); s_cpu_core_base = JitInterface::InitJitCore(DefaultCPUCore()); } break; diff --git a/Source/Core/DolphinQt/Debugger/RegisterColumn.h b/Source/Core/DolphinQt/Debugger/RegisterColumn.h index dfc58a41f5..1604aea401 100644 --- a/Source/Core/DolphinQt/Debugger/RegisterColumn.h +++ b/Source/Core/DolphinQt/Debugger/RegisterColumn.h @@ -67,6 +67,6 @@ private: std::function m_get_register; std::function m_set_register; - u64 m_value; + u64 m_value = 0; RegisterDisplay m_display = RegisterDisplay::Hex; };