diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2018-04-12 21:40:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-12 21:40:29 +0200 |
| commit | b2de380d162c4805edb94808f38a214725d2724e (patch) | |
| tree | 1d8a9e7eea10820e5d645ad5028e506836b856de /Source/Core/DolphinWX/Debugger/RegisterView.cpp | |
| parent | 0bfeb37a1f50193d39559d29802cb48f45db2b02 (diff) | |
| parent | 40bb9974f21878e64fb03d70e717cb996bf13a29 (diff) | |
Merge pull request #6635 from spycrab/fix_linter
Tools: Bump lint.sh version
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/RegisterView.cpp')
| -rw-r--r--[-rwxr-xr-x] | Source/Core/DolphinWX/Debugger/RegisterView.cpp | 18 |
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]) |
