diff options
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/PowerPC/BreakPoints.h | 12 |
1 files changed, 6 insertions, 6 deletions
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. |
