Fix "double delay" error in sceNpDrmEdataSetupKey

This commit is contained in:
Henrik Rydgård
2023-05-25 10:01:27 +02:00
parent 0a069f39c9
commit c5e0dafa44
5 changed files with 31 additions and 19 deletions

View File

@@ -575,7 +575,7 @@ size_t MetaFileSystem::SeekFile(u32 handle, s32 position, FileMove type)
std::lock_guard<std::recursive_mutex> guard(lock);
IFileSystem *sys = GetHandleOwner(handle);
if (sys)
return sys->SeekFile(handle,position,type);
return sys->SeekFile(handle, position, type);
else
return 0;
}