1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2025-01-31 20:41:45 +01:00

Reset initial seek position in MSELF files (#3977)

This commit is contained in:
Ofek 2017-12-23 21:18:55 +02:00 committed by Ivan
parent 58d8d12665
commit a6208d2bd7

View File

@ -53,6 +53,8 @@ bool verify_mself(u32 fd, fs::file const& mself_file)
return false;
}
mself_file.seek(0);
return true;
}