Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #459 from lioncash/prototype-typo
Fix a typo in a function prototype in PowerPCDisasm.h
  • Loading branch information
delroth committed Jun 8, 2014
2 parents 103d900 + efdcfe4 commit b79482a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Externals/Bochs_disasm/PowerPCDisasm.h
Expand Up @@ -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
2 changes: 0 additions & 2 deletions Source/Core/DolphinWX/Debugger/RegisterWindow.cpp
Expand Up @@ -16,8 +16,6 @@

class wxWindow;

extern const char* GetGRPName(unsigned int index);

BEGIN_EVENT_TABLE(CRegisterWindow, wxPanel)
END_EVENT_TABLE()

Expand Down

0 comments on commit b79482a

Please sign in to comment.