Fix a typo in a function prototype in PowerPCDisasm.h
Should be GetGPRName not GetGRPName. Removed an unnecessary extern declaration of GetGRPName in RegisterWindow.cpp. Also added GetFPRName to the PowerPCDisasm header for consistency.
This commit is contained in:
parent
3a06907653
commit
efdcfe404f
|
@ -22,7 +22,8 @@
|
||||||
#ifndef _POWERPC_DISASM
|
#ifndef _POWERPC_DISASM
|
||||||
#define _POWERPC_DISASM
|
#define _POWERPC_DISASM
|
||||||
|
|
||||||
void DisassembleGekko(unsigned int opcode, unsigned int curInstAddr, char *dest, int max_size);
|
void DisassembleGekko(unsigned int opcode, unsigned int curInstAddr, char* dest, int max_size);
|
||||||
const char *GetGRPName(unsigned int index);
|
const char* GetGPRName(unsigned int index);
|
||||||
|
const char* GetFPRName(unsigned int index);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -16,8 +16,6 @@
|
||||||
|
|
||||||
class wxWindow;
|
class wxWindow;
|
||||||
|
|
||||||
extern const char* GetGRPName(unsigned int index);
|
|
||||||
|
|
||||||
BEGIN_EVENT_TABLE(CRegisterWindow, wxPanel)
|
BEGIN_EVENT_TABLE(CRegisterWindow, wxPanel)
|
||||||
END_EVENT_TABLE()
|
END_EVENT_TABLE()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue