diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-19 16:11:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-19 16:11:09 -0700 |
commit | b5c77313deb1d6f4dd92e443842aaea3052dfb8c (patch) | |
tree | 26dedf2326e99a0180aa97053a83704dbcbb0d4b /src/core/loader/loader.h | |
parent | dd0446ff437a0d65a447b9f52eaf0fb2fd8d5b20 (diff) | |
parent | 50d08beed294017df84863c3d67ecbb3c8dfc7fb (diff) |
Merge pull request #719 from lioncash/docs
loader: Amend Doxygen comments
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r-- | src/core/loader/loader.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 1da9e8099..6f517ca8c 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h @@ -154,7 +154,7 @@ public: /** * Get the RomFS of the application * Since the RomFS can be huge, we return a file reference instead of copying to a buffer - * @param file The file containing the RomFS + * @param dir The directory containing the RomFS * @return ResultStatus result of function */ virtual ResultStatus ReadRomFS(FileSys::VirtualFile& dir) { @@ -193,8 +193,8 @@ extern const std::initializer_list<Kernel::AddressMapping> default_address_mappi /** * Identifies a bootable file and return a suitable loader - * @param filename String filename of bootable file - * @return best loader for this file + * @param file The bootable file + * @return the best loader for this file */ std::unique_ptr<AppLoader> GetLoader(FileSys::VirtualFile file); |