From 927685fd63c7617f3e68969179b7690cedd2be8f Mon Sep 17 00:00:00 2001 From: Elad Ashkenazi Date: Mon, 16 Oct 2023 14:10:57 +0300 Subject: [PATCH] VFS: fix rename --- rpcs3/Emu/VFS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/VFS.cpp b/rpcs3/Emu/VFS.cpp index bdcb11d265..80101968d6 100644 --- a/rpcs3/Emu/VFS.cpp +++ b/rpcs3/Emu/VFS.cpp @@ -975,7 +975,7 @@ bool vfs::host::rename(const std::string& from, const std::string& to, const lv2 file.restore_data.seek_pos = file.file.pos(); file.file.close(); // Actually close it! - escaped_real.emplace_back(ensure(idm::get_unlocked(id)), std::move(escaped)); + escaped_real.emplace_back(ensure(idm::get_unlocked(id)), std::move(escaped)); } });