summaryrefslogtreecommitdiffstats
path: root/src/core/loader/loader.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-19 20:02:07 +0200
committerLioncash <mathew1800@gmail.com>2018-07-19 20:04:33 +0200
commit50d08beed294017df84863c3d67ecbb3c8dfc7fb (patch)
tree201f5b41053e51f826ceb3051bd1fdce43aa8477 /src/core/loader/loader.cpp
parentMerge pull request #709 from lioncash/thread-local (diff)
downloadyuzu-50d08beed294017df84863c3d67ecbb3c8dfc7fb.tar
yuzu-50d08beed294017df84863c3d67ecbb3c8dfc7fb.tar.gz
yuzu-50d08beed294017df84863c3d67ecbb3c8dfc7fb.tar.bz2
yuzu-50d08beed294017df84863c3d67ecbb3c8dfc7fb.tar.lz
yuzu-50d08beed294017df84863c3d67ecbb3c8dfc7fb.tar.xz
yuzu-50d08beed294017df84863c3d67ecbb3c8dfc7fb.tar.zst
yuzu-50d08beed294017df84863c3d67ecbb3c8dfc7fb.zip
Diffstat (limited to 'src/core/loader/loader.cpp')
-rw-r--r--src/core/loader/loader.cpp4
1 files changed, 2 insertions, 2 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) {
* Get a loader for a file with a specific type
* @param file The file to load
* @param type The type of the file
- * @param filename the file name (without path)
- * @param filepath the file full path (with name)
+ * @param file the file to retrieve the loader for
+ * @param type the file type
* @return std::unique_ptr<AppLoader> a pointer to a loader object; nullptr for unsupported type
*/
static std::unique_ptr<AppLoader> GetFileLoader(FileSys::VirtualFile file, FileType type) {