1
0
mirror of https://github.com/starr-dusT/citra.git synced 2024-10-02 10:26:17 -07:00

service/cro: specify endianness for enum

This commit is contained in:
Weiyi Wang 2018-09-21 20:21:49 -04:00
parent 18e94897c4
commit 16b36b6025

@ -236,7 +236,7 @@ private:
struct SegmentEntry {
u32_le offset;
u32_le size;
SegmentType type;
enum_le<SegmentType> type;
static constexpr HeaderField TABLE_OFFSET_FIELD = SegmentTableOffset;
};