diff --git a/Core/HLE/sceIo.cpp b/Core/HLE/sceIo.cpp index 7bc429d52c..da3ef85e7a 100644 --- a/Core/HLE/sceIo.cpp +++ b/Core/HLE/sceIo.cpp @@ -638,7 +638,7 @@ void __IoSchedSync(FileNode *f, int fd, int usec) { u64 param = ((u64)__KernelGetCurThread()) << 32 | fd; CoreTiming::ScheduleEvent(usToCycles(usec), syncNotifyEvent, param); - f->pendingAsyncResult = true; + f->pendingAsyncResult = false; f->hasAsyncResult = false; }