mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 07:30:02 +00:00
loader: Remove unnecessary constructor call in IdentifyFile()
RealVfsFile inherits from VfsFile, the instance from std::make_shared is already compatible with the function argument type, making the copy constructor call unnecessary.
This commit is contained in:
parent
07e5319d55
commit
a147fa5825
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ FileType IdentifyFile(FileSys::VirtualFile file) {
|
||||||
}
|
}
|
||||||
|
|
||||||
FileType IdentifyFile(const std::string& file_name) {
|
FileType IdentifyFile(const std::string& file_name) {
|
||||||
return IdentifyFile(FileSys::VirtualFile(std::make_shared<FileSys::RealVfsFile>(file_name)));
|
return IdentifyFile(std::make_shared<FileSys::RealVfsFile>(file_name));
|
||||||
}
|
}
|
||||||
|
|
||||||
FileType GuessFromFilename(const std::string& name) {
|
FileType GuessFromFilename(const std::string& name) {
|
||||||
|
|
Loading…
Reference in a new issue