mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 08:48:13 +00:00
Merge pull request #253 from Nico01/master
fix compilation with capstone next
This commit is contained in:
commit
b3a990f1ae
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
//> M68K registers
|
||||
typedef enum m68k_reg {
|
||||
typedef enum uc_m68k_reg {
|
||||
UC_M68K_REG_INVALID = 0,
|
||||
|
||||
UC_M68K_REG_A0,
|
||||
|
@ -41,7 +41,7 @@ typedef enum m68k_reg {
|
|||
UC_M68K_REG_PC,
|
||||
|
||||
UC_M68K_REG_ENDING, // <-- mark the end of the list of registers
|
||||
} m68k_reg;
|
||||
} uc_m68k_reg;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue