Tests show io open also rescheds, async or not.

This commit is contained in:
Unknown W. Brackets 2012-12-25 23:04:06 -08:00
parent b2ef54e194
commit f75f2748b1

View File

@ -382,6 +382,8 @@ u32 sceIoOpen(const char* filename, int mode) {
if (mode & O_CREAT)
access |= FILEACCESS_CREATE;
hleReSchedule("file opened");
u32 h = pspFileSystem.OpenFile(filename, (FileAccess) access);
if (h == 0)
{