mirror of https://github.com/mgba-emu/mgba.git
Fix PSRs on some PPC compilers
This commit is contained in:
parent
d1f8e58b13
commit
235141f1f3
|
@ -52,7 +52,7 @@ struct ARMCore;
|
|||
|
||||
union PSR {
|
||||
struct {
|
||||
#ifdef __POWERPC__
|
||||
#if defined(__POWERPC__) || defined(__PPC__)
|
||||
unsigned n : 1;
|
||||
unsigned z : 1;
|
||||
unsigned c : 1;
|
||||
|
|
Loading…
Reference in New Issue