diff --git a/Externals/Bochs_disasm/PowerPCDisasm.h b/Externals/Bochs_disasm/PowerPCDisasm.h index 539f171079..d78186af94 100644 --- a/Externals/Bochs_disasm/PowerPCDisasm.h +++ b/Externals/Bochs_disasm/PowerPCDisasm.h @@ -22,7 +22,8 @@ #ifndef _POWERPC_DISASM #define _POWERPC_DISASM -void DisassembleGekko(unsigned int opcode, unsigned int curInstAddr, char *dest, int max_size); -const char *GetGRPName(unsigned int index); +void DisassembleGekko(unsigned int opcode, unsigned int curInstAddr, char* dest, int max_size); +const char* GetGPRName(unsigned int index); +const char* GetFPRName(unsigned int index); #endif diff --git a/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp b/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp index b34883ea32..f385bf20d0 100644 --- a/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp +++ b/Source/Core/DolphinWX/Debugger/RegisterWindow.cpp @@ -16,8 +16,6 @@ class wxWindow; -extern const char* GetGRPName(unsigned int index); - BEGIN_EVENT_TABLE(CRegisterWindow, wxPanel) END_EVENT_TABLE()