From b60ad2425d05dc5134de76d0848a5079ad197500 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 25 May 2018 16:29:56 -0400 Subject: Common: Namespace GekkoDisassembler.cpp/.h Moves more common code into the Common namespace where it belongs --- Source/Core/DolphinWX/Debugger/RegisterView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/DolphinWX/Debugger/RegisterView.cpp') 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: -- cgit v1.2.3