diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2014-06-08 03:17:06 +0200 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2014-06-08 03:17:06 +0200 |
| commit | b79482af4451fa1018d6fcabdbe36f6e81ddeb3d (patch) | |
| tree | 3c744c2cd7fb17da01a393be329ff8f219a73426 /Externals | |
| parent | 103d9008d6e55e6e6c35a9859f88b7e5657af6ce (diff) | |
| parent | efdcfe404fcde6d479e8e7f347e22a53c41f3930 (diff) | |
Merge pull request #459 from lioncash/prototype-typo
Fix a typo in a function prototype in PowerPCDisasm.h
Diffstat (limited to 'Externals')
| -rw-r--r-- | Externals/Bochs_disasm/PowerPCDisasm.h | 5 |
1 files changed, 3 insertions, 2 deletions
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 |
