Merge pull request #14536 from JosJuice/gbacore-android-content

Don't call OpenModeToAndroid in GBACore
This commit is contained in:
JMC47
2026-04-01 11:39:47 -04:00
committed by GitHub

View File

@@ -121,7 +121,7 @@ static VFile* OpenReadOnlyFile(const char* path)
{
#ifdef ANDROID
if (IsPathAndroidContent(path))
return VFileFromFD(OpenAndroidContent(path, OpenModeToAndroid("r")));
return VFileFromFD(OpenAndroidContent(path, "r"));
#endif
return VFileOpen(path, O_RDONLY);
}