Skip to content

Commit

Permalink
Netplay netpacket interface fix "Sort Save States into Folders" setti…
Browse files Browse the repository at this point in the history
…ngs (libretro#16019)

Before this fix with the folder setting enabled a core using the netpacket interface would append the sort folder name twice thus breaking existing save states
  • Loading branch information
schellingb authored and Sunderland93 committed Dec 26, 2024
1 parent 24639ad commit 8a3bed0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion network/netplay/netplay_frontend.c
Original file line number Diff line number Diff line change
Expand Up @@ -9376,7 +9376,7 @@ bool netplay_driver_ctl(enum rarch_netplay_ctl_state state, void *data)
/* reset savefile dir as core_netpacket_interface affects it */
runloop_path_set_redirect(config_get_ptr(),
dir_get_ptr(RARCH_DIR_SAVEFILE),
dir_get_ptr(RARCH_DIR_CURRENT_SAVESTATE));
dir_get_ptr(RARCH_DIR_SAVESTATE));
}
break;

Expand Down

0 comments on commit 8a3bed0

Please sign in to comment.