summaryrefslogtreecommitdiffstats
path: root/src/core/loader/ncch.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-06-19 05:53:22 +0200
committerbunnei <ericbunnie@gmail.com>2014-06-25 01:30:05 +0200
commit3da2bc6830e05d943c4d131a3167c2df25bff344 (patch)
tree8f77cc09046ea8be33eb9816ffbf89d9cecdf524 /src/core/loader/ncch.h
parentLoader: Implemented AppLoader interface for abstracting application loading. (diff)
downloadyuzu-3da2bc6830e05d943c4d131a3167c2df25bff344.tar
yuzu-3da2bc6830e05d943c4d131a3167c2df25bff344.tar.gz
yuzu-3da2bc6830e05d943c4d131a3167c2df25bff344.tar.bz2
yuzu-3da2bc6830e05d943c4d131a3167c2df25bff344.tar.lz
yuzu-3da2bc6830e05d943c4d131a3167c2df25bff344.tar.xz
yuzu-3da2bc6830e05d943c4d131a3167c2df25bff344.tar.zst
yuzu-3da2bc6830e05d943c4d131a3167c2df25bff344.zip
Diffstat (limited to '')
-rw-r--r--src/core/loader/ncch.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/loader/ncch.h b/src/core/loader/ncch.h
index 3aae5417c..525a5aef5 100644
--- a/src/core/loader/ncch.h
+++ b/src/core/loader/ncch.h
@@ -159,12 +159,13 @@ public:
private:
/**
- * Reads an application section of an NCCH file into AppLoader (e.g. .code, .logo, etc.)
+ * Reads an application ExeFS section of an NCCH file into AppLoader (e.g. .code, .logo, etc.)
* @param file Handle to file to read from
* @param name Name of section to read out of NCCH file
* @param buffer Buffer to read section into.
+ * @return ResultStatus result of function
*/
- const ResultStatus LoadSection(File::IOFile& file, const char* name,
+ const ResultStatus LoadSectionExeFS(File::IOFile& file, const char* name,
std::vector<u8>& buffer);
/**