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

@ -3,6 +3,7 @@
#include "bus.h"
#include "cdrom.h"
#include "common/audio_stream.h"
#include "common/file_system.h"
#include "common/log.h"
#include "common/state_wrapper.h"
#include "common/string_util.h"
@ -878,7 +879,7 @@ void ResetPerformanceCounters()
bool LoadEXE(const char* filename, std::vector<u8>& bios_image)
{
std::FILE* fp = std::fopen(filename, "rb");
std::FILE* fp = FileSystem::OpenCFile(filename, "rb");
if (!fp)
return false;
@ -997,7 +998,7 @@ bool LoadPSF(const char* filename, std::vector<u8>& bios_image)
bool SetExpansionROM(const char* filename)
{
std::FILE* fp = std::fopen(filename, "rb");
std::FILE* fp = FileSystem::OpenCFile(filename, "rb");
if (!fp)
{
Log_ErrorPrintf("Failed to open '%s'", filename);