loader: Remove unused IdentifyFile overload
This commit is contained in:
parent
656e97df16
commit
dad2ae1ee0
|
@ -43,10 +43,6 @@ FileType IdentifyFile(FileSys::VirtualFile file) {
|
||||||
return FileType::Unknown;
|
return FileType::Unknown;
|
||||||
}
|
}
|
||||||
|
|
||||||
FileType IdentifyFile(const std::string& file_name) {
|
|
||||||
return IdentifyFile(std::make_shared<FileSys::RealVfsFile>(file_name));
|
|
||||||
}
|
|
||||||
|
|
||||||
FileType GuessFromFilename(const std::string& name) {
|
FileType GuessFromFilename(const std::string& name) {
|
||||||
if (name == "main")
|
if (name == "main")
|
||||||
return FileType::DeconstructedRomDirectory;
|
return FileType::DeconstructedRomDirectory;
|
||||||
|
|
|
@ -42,14 +42,6 @@ enum class FileType {
|
||||||
*/
|
*/
|
||||||
FileType IdentifyFile(FileSys::VirtualFile file);
|
FileType IdentifyFile(FileSys::VirtualFile file);
|
||||||
|
|
||||||
/**
|
|
||||||
* Identifies the type of a bootable file based on the magic value in its header.
|
|
||||||
* @param file_name path to file
|
|
||||||
* @return FileType of file. Note: this will return FileType::Unknown if it is unable to determine
|
|
||||||
* a filetype, and will never return FileType::Error.
|
|
||||||
*/
|
|
||||||
FileType IdentifyFile(const std::string& file_name);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Guess the type of a bootable file from its name
|
* Guess the type of a bootable file from its name
|
||||||
* @param name String name of bootable file
|
* @param name String name of bootable file
|
||||||
|
|
Reference in New Issue