summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-08-30 17:01:19 -0400
committerLioncash <mathew1800@gmail.com>2014-08-30 18:06:48 -0400
commit8553b0f27b50ef6b78e043c349a0c3a983293d4b (patch)
tree7da8a213bb00c326f59a1997e23d7605df6b596c /Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp
parent844d45b26e57932868d59735e0a2bc3489237db4 (diff)
DolphinWX: Clean up brace placements
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp')
-rw-r--r--Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp
index 9f3c081c16..a83413587d 100644
--- a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp
+++ b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp
@@ -377,7 +377,8 @@ void CCodeWindow::NotifyMapLoaded()
void CCodeWindow::OnSymbolListChange(wxCommandEvent& event)
{
int index = symbols->GetSelection();
- if (index >= 0) {
+ if (index >= 0)
+ {
Symbol* pSymbol = static_cast<Symbol *>(symbols->GetClientData(index));
if (pSymbol != nullptr)
{