summaryrefslogtreecommitdiffstats
path: root/src/core/loader/nax.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-28 04:40:46 +0200
committerGitHub <noreply@github.com>2021-04-28 04:40:46 +0200
commitb096ec68cdbf6f1064a8b6b855489d38c3e59f6a (patch)
tree605b89f42d7897aac46f06add54c34201d9354bd /src/core/loader/nax.h
parentMerge pull request #6246 from lioncash/shadow (diff)
parentloader: Resolve instances of variable shadowing (diff)
downloadyuzu-b096ec68cdbf6f1064a8b6b855489d38c3e59f6a.tar
yuzu-b096ec68cdbf6f1064a8b6b855489d38c3e59f6a.tar.gz
yuzu-b096ec68cdbf6f1064a8b6b855489d38c3e59f6a.tar.bz2
yuzu-b096ec68cdbf6f1064a8b6b855489d38c3e59f6a.tar.lz
yuzu-b096ec68cdbf6f1064a8b6b855489d38c3e59f6a.tar.xz
yuzu-b096ec68cdbf6f1064a8b6b855489d38c3e59f6a.tar.zst
yuzu-b096ec68cdbf6f1064a8b6b855489d38c3e59f6a.zip
Diffstat (limited to 'src/core/loader/nax.h')
-rw-r--r--src/core/loader/nax.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/core/loader/nax.h b/src/core/loader/nax.h
index a5b5e2ae1..68427c1cf 100644
--- a/src/core/loader/nax.h
+++ b/src/core/loader/nax.h
@@ -23,15 +23,17 @@ class AppLoader_NCA;
/// Loads a NAX file
class AppLoader_NAX final : public AppLoader {
public:
- explicit AppLoader_NAX(FileSys::VirtualFile file);
+ explicit AppLoader_NAX(FileSys::VirtualFile file_);
~AppLoader_NAX() override;
/**
- * Returns the type of the file
- * @param file open file
- * @return FileType found, or FileType::Error if this loader doesn't know it
+ * Identifies whether or not the given file is a NAX file.
+ *
+ * @param nax_file The file to identify.
+ *
+ * @return FileType::NAX, or FileType::Error if the file is not a NAX file.
*/
- static FileType IdentifyType(const FileSys::VirtualFile& file);
+ static FileType IdentifyType(const FileSys::VirtualFile& nax_file);
FileType GetFileType() const override;