mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
enum alignment fixes
This commit is contained in:
parent
b68441e36f
commit
4d049ee7c4
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user