Replace more instances of fopen() with FileSystem::OpenFile()

This commit is contained in:
Connor McLaughlin
2020-08-01 13:34:07 +10:00
parent 2885d2e547
commit 2eb9384275
4 changed files with 19 additions and 19 deletions

View File

@ -307,7 +307,7 @@ bool GameList::GetExeListEntry(const char* path, GameListEntry* entry)
if (!FileSystem::StatFile(path, &ffd))
return false;
std::FILE* fp = std::fopen(path, "rb");
std::FILE* fp = FileSystem::OpenCFile(path, "rb");
if (!fp)
return false;