loader: Remove unused IdentifyFile overload

This commit is contained in:
Zach Hilman 2018-08-03 11:56:44 -04:00
parent 656e97df16
commit dad2ae1ee0
2 changed files with 0 additions and 12 deletions

View file

@ -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;

View file

@ -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