mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-26 11:04:15 +01:00
bitfield endian fix
This commit is contained in:
parent
7b16db25f9
commit
c267181e2a
@ -35,8 +35,14 @@ class CPool
|
||||
U *m_entries;
|
||||
union Flags {
|
||||
struct {
|
||||
// bitfields are compiler and endian specific
|
||||
#ifdef BIGENDIAN
|
||||
uint8 free : 1;
|
||||
uint8 id : 7;
|
||||
#else
|
||||
uint8 id : 7;
|
||||
uint8 free : 1;
|
||||
#endif
|
||||
};
|
||||
uint8 u;
|
||||
} *m_flags;
|
||||
|
Loading…
Reference in New Issue
Block a user