summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/RegisterView.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-05-25 16:29:56 -0400
committerLioncash <mathew1800@gmail.com>2018-05-25 16:55:09 -0400
commitb60ad2425d05dc5134de76d0848a5079ad197500 (patch)
treee0728931ff3350c58b0f5465acebc3af2802c497 /Source/Core/DolphinWX/Debugger/RegisterView.cpp
parent3d44dc39814197e43bf1b8c2524684252251ee7b (diff)
Common: Namespace GekkoDisassembler.cpp/.h
Moves more common code into the Common namespace where it belongs
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/RegisterView.cpp')
-rw-r--r--Source/Core/DolphinWX/Debugger/RegisterView.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/Debugger/RegisterView.cpp b/Source/Core/DolphinWX/Debugger/RegisterView.cpp
index f027224da6..6d62ca6b5e 100644
--- a/Source/Core/DolphinWX/Debugger/RegisterView.cpp
+++ b/Source/Core/DolphinWX/Debugger/RegisterView.cpp
@@ -284,11 +284,11 @@ wxString CRegTable::GetValue(int row, int col)
switch (col)
{
case 0:
- return StrToWxStr(GekkoDisassembler::GetGPRName(row));
+ return StrToWxStr(Common::GekkoDisassembler::GetGPRName(row));
case 1:
return FormatGPR(row);
case 2:
- return StrToWxStr(GekkoDisassembler::GetFPRName(row));
+ return StrToWxStr(Common::GekkoDisassembler::GetFPRName(row));
case 3:
return FormatFPR(row, 0);
case 4: