Common: Namespace GekkoDisassembler.cpp/.h

Moves more common code into the Common namespace where it belongs
This commit is contained in:
Lioncash
2018-05-25 16:29:56 -04:00
parent 3d44dc3981
commit b60ad2425d
10 changed files with 20 additions and 12 deletions

View File

@ -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: