diff --git a/Source/Core/Core/PowerPC/BreakPoints.h b/Source/Core/Core/PowerPC/BreakPoints.h index 00111fd832..7f34e126b7 100644 --- a/Source/Core/Core/PowerPC/BreakPoints.h +++ b/Source/Core/Core/PowerPC/BreakPoints.h @@ -13,9 +13,9 @@ class DebugInterface; struct TBreakPoint { - u32 iAddress; - bool bOn; - bool bTemporary; + u32 iAddress = 0; + bool bOn = false; + bool bTemporary = false; }; struct TMemCheck @@ -39,9 +39,9 @@ struct TMemCheck struct TWatch { - std::string name = ""; - u32 iAddress; - bool bOn; + std::string name; + u32 iAddress = 0; + bool bOn = false; }; // Code breakpoints.