enum alignment fixes

This commit is contained in:
Michael Scire 2019-06-01 18:46:14 -07:00 committed by yellows8
parent b68441e36f
commit 4d049ee7c4

View File

@ -99,7 +99,7 @@ typedef struct
typedef enum {
ENTRYTYPE_DIR = 0,
ENTRYTYPE_FILE = 1
ENTRYTYPE_FILE = 1,
} FsEntryType;
typedef enum
@ -181,7 +181,7 @@ typedef struct {
} FsGameCardHandle;
typedef struct {
u32 aes_ctr_key_type; ///< Contains bitflags describing how data is AES encrypted
u32 aes_ctr_key_type; ///< Contains bitflags describing how data is AES encrypted.
u32 speed_emulation_type; ///< Contains bitflags describing how data is emulated.
u32 reserved[0x38/sizeof(u32)];
} FsRangeInfo;
@ -232,7 +232,7 @@ typedef enum
FsFileSystemType_ContentManual = 4,
FsFileSystemType_ContentMeta = 5,
FsFileSystemType_ContentData = 6,
FsFileSystemType_ApplicationPackage = 7
FsFileSystemType_ApplicationPackage = 7,
} FsFileSystemType;
typedef enum