reenable rewind if the user disables netplay
This commit is contained in:
parent
c101b4ccb3
commit
c2882164f9
|
@ -1856,10 +1856,12 @@ bool command_event(enum event_command cmd, void *data)
|
||||||
if (settings->bools.cheevos_hardcore_mode_enable)
|
if (settings->bools.cheevos_hardcore_mode_enable)
|
||||||
return false;
|
return false;
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef HAVE_NETWORKING
|
||||||
/* Only enable state manager if netplay is not underway
|
/* Only enable state manager if netplay is not underway
|
||||||
TODO: Add a setting for these tweaks */
|
TODO: Add a setting for these tweaks */
|
||||||
if (settings->bools.rewind_enable
|
if (settings->bools.rewind_enable
|
||||||
&& !netplay_driver_ctl(RARCH_NETPLAY_CTL_IS_ENABLED, NULL))
|
&& !netplay_driver_ctl(RARCH_NETPLAY_CTL_IS_ENABLED, NULL))
|
||||||
|
#endif
|
||||||
state_manager_event_init((unsigned)settings->rewind_buffer_size);
|
state_manager_event_init((unsigned)settings->rewind_buffer_size);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -4373,9 +4373,15 @@ static int action_ok_netplay_enable_client(const char *path,
|
||||||
static int action_ok_netplay_disconnect(const char *path,
|
static int action_ok_netplay_disconnect(const char *path,
|
||||||
const char *label, unsigned type, size_t idx, size_t entry_idx)
|
const char *label, unsigned type, size_t idx, size_t entry_idx)
|
||||||
{
|
{
|
||||||
|
settings_t *settings = config_get_ptr();
|
||||||
#ifdef HAVE_NETWORKING
|
#ifdef HAVE_NETWORKING
|
||||||
netplay_driver_ctl(RARCH_NETPLAY_CTL_DISCONNECT, NULL);
|
netplay_driver_ctl(RARCH_NETPLAY_CTL_DISCONNECT, NULL);
|
||||||
netplay_driver_ctl(RARCH_NETPLAY_CTL_DISABLE, NULL);
|
netplay_driver_ctl(RARCH_NETPLAY_CTL_DISABLE, NULL);
|
||||||
|
|
||||||
|
/* Re-enable rewind if it was enabled
|
||||||
|
TODO: Add a setting for these tweaks */
|
||||||
|
if (settings->bools.rewind_enable)
|
||||||
|
command_event(CMD_EVENT_REWIND_INIT, NULL);
|
||||||
return generic_action_ok_command(CMD_EVENT_RESUME);
|
return generic_action_ok_command(CMD_EVENT_RESUME);
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in New Issue