diff options
| author | 2018-06-21 11:16:23 -0400 | |
|---|---|---|
| committer | 2018-06-21 11:16:23 -0400 | |
| commit | 63f26d5c40adb49094b03b232528672f526afe49 (patch) | |
| tree | b76a154e17c819df7803d5860f08406446507a5c /src/core/loader/loader.h | |
| parent | Merge pull request #576 from Subv/warnings1 (diff) | |
| download | yuzu-63f26d5c40adb49094b03b232528672f526afe49.tar.gz yuzu-63f26d5c40adb49094b03b232528672f526afe49.tar.xz yuzu-63f26d5c40adb49094b03b232528672f526afe49.zip | |
Add support for decrypted NCA files (#567)
* Start to add NCA support in loader
* More nca stuff
* More changes to nca.cpp
* Now identifies decrypted NCA cont.
* Game list fixes and more structs and stuff
* More updates to Nca class
* Now reads ExeFs (i think)
* ACTUALLY LOADS EXEFS!
* RomFS loads and games execute
* Cleanup and Finalize
* plumbing, cleanup and testing
* fix some things that i didnt think of before
* Preliminary Review Changes
* Review changes for bunnei and subv
Diffstat (limited to 'src/core/loader/loader.h')
| -rw-r--r-- | src/core/loader/loader.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index b1aabb1cb..b76f7b13d 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h | |||
| @@ -29,6 +29,7 @@ enum class FileType { | |||
| 29 | ELF, | 29 | ELF, |
| 30 | NSO, | 30 | NSO, |
| 31 | NRO, | 31 | NRO, |
| 32 | NCA, | ||
| 32 | DeconstructedRomDirectory, | 33 | DeconstructedRomDirectory, |
| 33 | }; | 34 | }; |
| 34 | 35 | ||