mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 14:01:25 +12:00
Fix savestate reload functionality
This commit is contained in:
parent
9a3b72f762
commit
4ecf8ecd06
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ bool boot_last_savestate(bool testing)
|
||||||
{
|
{
|
||||||
if (!g_cfg.savestate.suspend_emu && !Emu.GetTitleID().empty() && (Emu.IsRunning() || Emu.GetStatus() == system_state::paused))
|
if (!g_cfg.savestate.suspend_emu && !Emu.GetTitleID().empty() && (Emu.IsRunning() || Emu.GetStatus() == system_state::paused))
|
||||||
{
|
{
|
||||||
const std::string save_dir = fs::get_cache_dir() + "/savestates/";
|
const std::string save_dir = fs::get_cache_dir() + "/savestates/" + Emu.GetTitleID() + '/';
|
||||||
|
|
||||||
std::string savestate_path;
|
std::string savestate_path;
|
||||||
s64 mtime = smin;
|
s64 mtime = smin;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue