summaryrefslogtreecommitdiff
path: root/src/core/loader/loader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r--src/core/loader/loader.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h
index 9d3e9ed3b..4a4bd7c77 100644
--- a/src/core/loader/loader.h
+++ b/src/core/loader/loader.h
@@ -207,10 +207,10 @@ extern const std::initializer_list<Kernel::AddressMapping> default_address_mappi
207std::unique_ptr<AppLoader> GetLoader(FileUtil::IOFile&& file, FileType type, const std::string& filename, const std::string& filepath); 207std::unique_ptr<AppLoader> GetLoader(FileUtil::IOFile&& file, FileType type, const std::string& filename, const std::string& filepath);
208 208
209/** 209/**
210 * Identifies and loads a bootable file 210 * Identifies a bootable file and return a suitable loader
211 * @param filename String filename of bootable file 211 * @param filename String filename of bootable file
212 * @return ResultStatus result of function 212 * @return best loader for this file
213 */ 213 */
214ResultStatus LoadFile(const std::string& filename); 214std::unique_ptr<AppLoader> GetFileLoader(const std::string& filename);
215 215
216} // namespace 216} // namespace