diff options
| author | 2018-07-19 14:02:07 -0400 | |
|---|---|---|
| committer | 2018-07-19 14:04:33 -0400 | |
| commit | 50d08beed294017df84863c3d67ecbb3c8dfc7fb (patch) | |
| tree | 201f5b41053e51f826ceb3051bd1fdce43aa8477 /src/core/loader | |
| parent | Merge pull request #709 from lioncash/thread-local (diff) | |
| download | yuzu-50d08beed294017df84863c3d67ecbb3c8dfc7fb.tar.gz yuzu-50d08beed294017df84863c3d67ecbb3c8dfc7fb.tar.xz yuzu-50d08beed294017df84863c3d67ecbb3c8dfc7fb.zip | |
loader: Amend Doxygen comments
These weren't adjusted when VFS was introduced
Diffstat (limited to 'src/core/loader')
| -rw-r--r-- | src/core/loader/loader.cpp | 4 | ||||
| -rw-r--r-- | src/core/loader/loader.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp index 1574345a1..e70f37677 100644 --- a/src/core/loader/loader.cpp +++ b/src/core/loader/loader.cpp | |||
| @@ -87,8 +87,8 @@ const char* GetFileTypeString(FileType type) { | |||
| 87 | * Get a loader for a file with a specific type | 87 | * Get a loader for a file with a specific type |
| 88 | * @param file The file to load | 88 | * @param file The file to load |
| 89 | * @param type The type of the file | 89 | * @param type The type of the file |
| 90 | * @param filename the file name (without path) | 90 | * @param file the file to retrieve the loader for |
| 91 | * @param filepath the file full path (with name) | 91 | * @param type the file type |
| 92 | * @return std::unique_ptr<AppLoader> a pointer to a loader object; nullptr for unsupported type | 92 | * @return std::unique_ptr<AppLoader> a pointer to a loader object; nullptr for unsupported type |
| 93 | */ | 93 | */ |
| 94 | static std::unique_ptr<AppLoader> GetFileLoader(FileSys::VirtualFile file, FileType type) { | 94 | static std::unique_ptr<AppLoader> GetFileLoader(FileSys::VirtualFile file, FileType type) { |
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: | |||
| 154 | /** | 154 | /** |
| 155 | * Get the RomFS of the application | 155 | * Get the RomFS of the application |
| 156 | * Since the RomFS can be huge, we return a file reference instead of copying to a buffer | 156 | * Since the RomFS can be huge, we return a file reference instead of copying to a buffer |
| 157 | * @param file The file containing the RomFS | 157 | * @param dir The directory containing the RomFS |
| 158 | * @return ResultStatus result of function | 158 | * @return ResultStatus result of function |
| 159 | */ | 159 | */ |
| 160 | virtual ResultStatus ReadRomFS(FileSys::VirtualFile& dir) { | 160 | virtual ResultStatus ReadRomFS(FileSys::VirtualFile& dir) { |
| @@ -193,8 +193,8 @@ extern const std::initializer_list<Kernel::AddressMapping> default_address_mappi | |||
| 193 | 193 | ||
| 194 | /** | 194 | /** |
| 195 | * Identifies a bootable file and return a suitable loader | 195 | * Identifies a bootable file and return a suitable loader |
| 196 | * @param filename String filename of bootable file | 196 | * @param file The bootable file |
| 197 | * @return best loader for this file | 197 | * @return the best loader for this file |
| 198 | */ | 198 | */ |
| 199 | std::unique_ptr<AppLoader> GetLoader(FileSys::VirtualFile file); | 199 | std::unique_ptr<AppLoader> GetLoader(FileSys::VirtualFile file); |
| 200 | 200 | ||