summaryrefslogtreecommitdiffstats
path: root/src/core/loader
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-09-10 17:07:33 +0200
committerLioncash <mathew1800@gmail.com>2015-09-10 17:20:21 +0200
commitd3efa637b448f1be84397deab0b1355bbc901e3b (patch)
tree0e9d245bb4509b26c9544012a3d38bd5329e7e55 /src/core/loader
parentMerge pull request #1131 from lioncash/uninit (diff)
downloadyuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar
yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.gz
yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.bz2
yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.lz
yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.xz
yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.zst
yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.zip
Diffstat (limited to 'src/core/loader')
-rw-r--r--src/core/loader/loader.cpp2
-rw-r--r--src/core/loader/ncch.h4
2 files changed, 4 insertions, 2 deletions
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp
index 062291006..74eb6e871 100644
--- a/src/core/loader/loader.cpp
+++ b/src/core/loader/loader.cpp
@@ -50,7 +50,7 @@ static FileType IdentifyFile(FileUtil::IOFile& file) {
/**
* Guess the type of a bootable file from its extension
- * @param extension String extension of bootable file
+ * @param extension_ String extension of bootable file
* @return FileType of file
*/
static FileType GuessFromExtension(const std::string& extension_) {
diff --git a/src/core/loader/ncch.h b/src/core/loader/ncch.h
index b4374a476..d875e4cf3 100644
--- a/src/core/loader/ncch.h
+++ b/src/core/loader/ncch.h
@@ -209,7 +209,9 @@ public:
/**
* Get the RomFS of the application
- * @param buffer Reference to buffer to store data
+ * @param romfs_file Reference to buffer to store data
+ * @param offset Offset in the file to the RomFS
+ * @param size Size of the RomFS in bytes
* @return ResultStatus result of function
*/
ResultStatus ReadRomFS(std::shared_ptr<FileUtil::IOFile>& romfs_file, u64& offset, u64& size) override;