summaryrefslogtreecommitdiff
path: root/src/core/loader/loader.h
diff options
context:
space:
mode:
authorGravatar Zach Hilman2018-08-25 11:44:14 -0400
committerGravatar Zach Hilman2018-09-04 14:25:54 -0400
commitb555311438ae1e2ad1e9caea55cc9f77c9ed4661 (patch)
tree40f5cad8d049e67e1a189cae1e5f4063c7b555d7 /src/core/loader/loader.h
parentkey_manager: Avoid autogeneration if key exists (diff)
downloadyuzu-b555311438ae1e2ad1e9caea55cc9f77c9ed4661.tar.gz
yuzu-b555311438ae1e2ad1e9caea55cc9f77c9ed4661.tar.xz
yuzu-b555311438ae1e2ad1e9caea55cc9f77c9ed4661.zip
loader: Add NSP file type and NSP-specific errors
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r--src/core/loader/loader.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h
index 5a8540b0e..be66b2257 100644
--- a/src/core/loader/loader.h
+++ b/src/core/loader/loader.h
@@ -29,6 +29,7 @@ enum class FileType {
29 NSO, 29 NSO,
30 NRO, 30 NRO,
31 NCA, 31 NCA,
32 NSP,
32 XCI, 33 XCI,
33 NAX, 34 NAX,
34 DeconstructedRomDirectory, 35 DeconstructedRomDirectory,
@@ -105,6 +106,7 @@ enum class ResultStatus : u16 {
105 ErrorMissingAESKeyGenerationSource, 106 ErrorMissingAESKeyGenerationSource,
106 ErrorMissingSDSaveKeySource, 107 ErrorMissingSDSaveKeySource,
107 ErrorMissingSDNCAKeySource, 108 ErrorMissingSDNCAKeySource,
109 ErrorNSPMissingProgramNCA,
108}; 110};
109 111
110std::ostream& operator<<(std::ostream& os, ResultStatus status); 112std::ostream& operator<<(std::ostream& os, ResultStatus status);