diff options
author | Lioncash <mathew1800@gmail.com> | 2014-09-06 19:37:59 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2014-09-06 19:38:03 +0200 |
commit | f68776ce137765dc51f0a8ffb8a91ba119832566 (patch) | |
tree | 8667a3bb9e56f610bef0aaa0c6a9202192954a64 /src/core/loader | |
parent | ncch: inline declare some variables in LZSS_Decompress (diff) | |
download | yuzu-f68776ce137765dc51f0a8ffb8a91ba119832566.tar yuzu-f68776ce137765dc51f0a8ffb8a91ba119832566.tar.gz yuzu-f68776ce137765dc51f0a8ffb8a91ba119832566.tar.bz2 yuzu-f68776ce137765dc51f0a8ffb8a91ba119832566.tar.lz yuzu-f68776ce137765dc51f0a8ffb8a91ba119832566.tar.xz yuzu-f68776ce137765dc51f0a8ffb8a91ba119832566.tar.zst yuzu-f68776ce137765dc51f0a8ffb8a91ba119832566.zip |
Diffstat (limited to 'src/core/loader')
-rw-r--r-- | src/core/loader/ncch.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/loader/ncch.h b/src/core/loader/ncch.h index 29b59aa11..f40a258b7 100644 --- a/src/core/loader/ncch.h +++ b/src/core/loader/ncch.h @@ -46,17 +46,17 @@ struct NCCH_Header { //////////////////////////////////////////////////////////////////////////////////////////////////// // ExeFS (executable file system) headers -typedef struct { +struct ExeFs_SectionHeader { char name[8]; u32 offset; u32 size; -} ExeFs_SectionHeader; +}; -typedef struct { +struct ExeFs_Header { ExeFs_SectionHeader section[8]; u8 reserved[0x80]; u8 hashes[8][0x20]; -} ExeFs_Header; +}; //////////////////////////////////////////////////////////////////////////////////////////////////// // ExHeader (executable file system header) headers |