summaryrefslogtreecommitdiff
path: root/src/core/loader/loader.h
diff options
context:
space:
mode:
authorGravatar Zach Hilman2018-08-03 11:56:44 -0400
committerGravatar Zach Hilman2018-08-08 21:18:45 -0400
commitdad2ae1ee01b42bb6bb8a903c856712fc2bffa37 (patch)
tree0a49467e661776c20bb82b36732cdca8fa2b19b6 /src/core/loader/loader.h
parentvfs: Use RealVfsFilesystem for fs-operations in RealVfsDirectory (diff)
downloadyuzu-dad2ae1ee01b42bb6bb8a903c856712fc2bffa37.tar.gz
yuzu-dad2ae1ee01b42bb6bb8a903c856712fc2bffa37.tar.xz
yuzu-dad2ae1ee01b42bb6bb8a903c856712fc2bffa37.zip
loader: Remove unused IdentifyFile overload
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r--src/core/loader/loader.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h
index 7bd0adedb..6a9e5a68b 100644
--- a/src/core/loader/loader.h
+++ b/src/core/loader/loader.h
@@ -43,14 +43,6 @@ enum class FileType {
43FileType IdentifyFile(FileSys::VirtualFile file); 43FileType IdentifyFile(FileSys::VirtualFile file);
44 44
45/** 45/**
46 * Identifies the type of a bootable file based on the magic value in its header.
47 * @param file_name path to file
48 * @return FileType of file. Note: this will return FileType::Unknown if it is unable to determine
49 * a filetype, and will never return FileType::Error.
50 */
51FileType IdentifyFile(const std::string& file_name);
52
53/**
54 * Guess the type of a bootable file from its name 46 * Guess the type of a bootable file from its name
55 * @param name String name of bootable file 47 * @param name String name of bootable file
56 * @return FileType of file. Note: this will return FileType::Unknown if it is unable to determine 48 * @return FileType of file. Note: this will return FileType::Unknown if it is unable to determine