mirror of
https://github.com/libretro/bsnes-libretro-cplusplus98.git
synced 2025-04-07 04:31:55 +00:00
Merge pull request #32 from warmenhoven/warmenhoven/pr/tvos
Fix tvOS build
This commit is contained in:
commit
ee255f7708
@ -12,9 +12,9 @@ struct flag_t {
|
||||
return data;
|
||||
}
|
||||
|
||||
inline unsigned operator|=(uint8 data) { return operator=(operator unsigned() | data); }
|
||||
inline unsigned operator^=(uint8 data) { return operator=(operator unsigned() ^ data); }
|
||||
inline unsigned operator&=(uint8 data) { return operator=(operator unsigned() & data); }
|
||||
inline unsigned operator|=(uint8 data) { return (*this)=(operator unsigned() | data); }
|
||||
inline unsigned operator^=(uint8 data) { return (*this)=(operator unsigned() ^ data); }
|
||||
inline unsigned operator&=(uint8 data) { return (*this)=(operator unsigned() & data); }
|
||||
};
|
||||
|
||||
struct word_t {
|
||||
|
Loading…
x
Reference in New Issue
Block a user