From a6208d2bd77ad67a3e3674cb5e75329b36a86807 Mon Sep 17 00:00:00 2001 From: Ofek Date: Sat, 23 Dec 2017 21:18:55 +0200 Subject: [PATCH] Reset initial seek position in MSELF files (#3977) --- rpcs3/Emu/Cell/lv2/sys_fs.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rpcs3/Emu/Cell/lv2/sys_fs.cpp b/rpcs3/Emu/Cell/lv2/sys_fs.cpp index 73a85af863..0a38745ae4 100644 --- a/rpcs3/Emu/Cell/lv2/sys_fs.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_fs.cpp @@ -53,6 +53,8 @@ bool verify_mself(u32 fd, fs::file const& mself_file) return false; } + mself_file.seek(0); + return true; }