Remove unused function GetHostPath from filesystems

This commit is contained in:
Henrik Rydgård
2021-05-13 10:39:17 +02:00
parent 9c66f81cbc
commit 40ab92fe7b
10 changed files with 1 additions and 49 deletions
-12
View File
@@ -764,12 +764,6 @@ PSPFileInfo DirectoryFileSystem::GetFileInfo(std::string filename) {
return ReplayApplyDiskFileInfo(x, CoreTiming::GetGlobalTimeUs());
}
// Same as GetLocalPath. Confusing.
bool DirectoryFileSystem::GetHostPath(const std::string &inpath, Path &outpath) {
outpath = GetLocalPath(inpath);
return true;
}
#ifdef _WIN32
#define FILETIME_FROM_UNIX_EPOCH_US 11644473600000000ULL
@@ -1174,12 +1168,6 @@ size_t VFSFileSystem::SeekFile(u32 handle, s32 position, FileMove type) {
}
}
bool VFSFileSystem::GetHostPath(const std::string &inpath, Path &outpath) {
// NOT SUPPORTED
return false;
}
std::vector<PSPFileInfo> VFSFileSystem::GetDirListing(std::string path) {
std::vector<PSPFileInfo> myVector;
// TODO