summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/RegisterView.cpp
diff options
context:
space:
mode:
authorspycrab <spycrab@users.noreply.github.com>2018-04-12 14:18:04 +0200
committerspycrab <spycrab@users.noreply.github.com>2018-04-12 21:28:39 +0200
commit40bb9974f21878e64fb03d70e717cb996bf13a29 (patch)
tree1d8a9e7eea10820e5d645ad5028e506836b856de /Source/Core/DolphinWX/Debugger/RegisterView.cpp
parentd27e85e9d70dfb41a5b8880fd3375a0ac9574f5d (diff)
Reformat all the things!
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/RegisterView.cpp')
-rw-r--r--[-rwxr-xr-x]Source/Core/DolphinWX/Debugger/RegisterView.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/Source/Core/DolphinWX/Debugger/RegisterView.cpp b/Source/Core/DolphinWX/Debugger/RegisterView.cpp
index 6e08be88e2..12faa79837 100755..100644
--- a/Source/Core/DolphinWX/Debugger/RegisterView.cpp
+++ b/Source/Core/DolphinWX/Debugger/RegisterView.cpp
@@ -319,19 +319,19 @@ wxString CRegTable::GetValue(int row, int col)
PowerPC::ppcState.spr[SPR_DBAT0L + row * 2]);
if (row < 8)
- return wxString::Format("%016llx", (u64)PowerPC::ppcState.spr[SPR_IBAT0U + (row - 4) * 2]
- << 32 |
- PowerPC::ppcState.spr[SPR_IBAT0L + (row - 4) * 2]);
+ return wxString::Format("%016llx",
+ (u64)PowerPC::ppcState.spr[SPR_IBAT0U + (row - 4) * 2] << 32 |
+ PowerPC::ppcState.spr[SPR_IBAT0L + (row - 4) * 2]);
if (row < 12)
- return wxString::Format("%016llx", (u64)PowerPC::ppcState.spr[SPR_DBAT4U + (row - 12) * 2]
- << 32 |
- PowerPC::ppcState.spr[SPR_DBAT4L + (row - 12) * 2]);
+ return wxString::Format("%016llx",
+ (u64)PowerPC::ppcState.spr[SPR_DBAT4U + (row - 12) * 2] << 32 |
+ PowerPC::ppcState.spr[SPR_DBAT4L + (row - 12) * 2]);
if (row < 16)
- return wxString::Format("%016llx", (u64)PowerPC::ppcState.spr[SPR_IBAT4U + (row - 16) * 2]
- << 32 |
- PowerPC::ppcState.spr[SPR_IBAT4L + (row - 16) * 2]);
+ return wxString::Format("%016llx",
+ (u64)PowerPC::ppcState.spr[SPR_IBAT4U + (row - 16) * 2] << 32 |
+ PowerPC::ppcState.spr[SPR_IBAT4L + (row - 16) * 2]);
if (row == 16)
return wxString::Format("%016" PRIx64, static_cast<u64>(PowerPC::ppcState.spr[SPR_TU])