mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-29 10:29:41 -06:00
move melon_fopen() to Platform.cpp
melon_fopen_local() will need fixoring
This commit is contained in:
@ -140,7 +140,7 @@ void GetSavestateName(int slot, char* filename, int len);
|
||||
|
||||
bool FileExists(const char* name)
|
||||
{
|
||||
FILE* f = melon_fopen(name, "rb");
|
||||
FILE* f = Platform::OpenFile(name, "rb");
|
||||
if (!f) return false;
|
||||
fclose(f);
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user