mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Common: Namespace GekkoDisassembler.cpp/.h
Moves more common code into the Common namespace where it belongs
This commit is contained in:
@ -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:
|
||||
|
Reference in New Issue
Block a user