diff options
| author | 2015-09-10 11:07:33 -0400 | |
|---|---|---|
| committer | 2015-09-10 11:20:21 -0400 | |
| commit | d3efa637b448f1be84397deab0b1355bbc901e3b (patch) | |
| tree | 0e9d245bb4509b26c9544012a3d38bd5329e7e55 /src/core/loader | |
| parent | Merge pull request #1131 from lioncash/uninit (diff) | |
| download | yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.gz yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.tar.xz yuzu-d3efa637b448f1be84397deab0b1355bbc901e3b.zip | |
General: Fix up doxygen comments
Diffstat (limited to 'src/core/loader')
| -rw-r--r-- | src/core/loader/loader.cpp | 2 | ||||
| -rw-r--r-- | src/core/loader/ncch.h | 4 |
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) { | |||
| 50 | 50 | ||
| 51 | /** | 51 | /** |
| 52 | * Guess the type of a bootable file from its extension | 52 | * Guess the type of a bootable file from its extension |
| 53 | * @param extension String extension of bootable file | 53 | * @param extension_ String extension of bootable file |
| 54 | * @return FileType of file | 54 | * @return FileType of file |
| 55 | */ | 55 | */ |
| 56 | static FileType GuessFromExtension(const std::string& extension_) { | 56 | 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: | |||
| 209 | 209 | ||
| 210 | /** | 210 | /** |
| 211 | * Get the RomFS of the application | 211 | * Get the RomFS of the application |
| 212 | * @param buffer Reference to buffer to store data | 212 | * @param romfs_file Reference to buffer to store data |
| 213 | * @param offset Offset in the file to the RomFS | ||
| 214 | * @param size Size of the RomFS in bytes | ||
| 213 | * @return ResultStatus result of function | 215 | * @return ResultStatus result of function |
| 214 | */ | 216 | */ |
| 215 | ResultStatus ReadRomFS(std::shared_ptr<FileUtil::IOFile>& romfs_file, u64& offset, u64& size) override; | 217 | ResultStatus ReadRomFS(std::shared_ptr<FileUtil::IOFile>& romfs_file, u64& offset, u64& size) override; |