mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
fix endian struct
This commit is contained in:
parent
cb4b923215
commit
6296f2b75c
1 changed files with 3 additions and 1 deletions
|
@ -85,7 +85,9 @@ public:
|
|||
return *this;
|
||||
}
|
||||
|
||||
operator long() const { return (long)swap(); }
|
||||
operator long() const { return (long)swap(); }
|
||||
operator s8() const { return (s8)swap(); }
|
||||
operator u8() const { return (u8)swap(); }
|
||||
operator s16() const { return (s16)swap(); }
|
||||
operator u16() const { return (u16)swap(); }
|
||||
operator s32() const { return (s32)swap(); }
|
||||
|
|
Loading…
Add table
Reference in a new issue