mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-02 21:37:14 +00:00
(retroarch.c) refactors
This commit is contained in:
parent
eeda9df418
commit
2f06612133
47
retroarch.c
47
retroarch.c
@ -2936,8 +2936,29 @@ static void check_grab_mouse_toggle(void)
|
||||
old_pressed = pressed;
|
||||
}
|
||||
|
||||
static void check_flip(void)
|
||||
static void do_state_checks(void)
|
||||
{
|
||||
rarch_check_block_hotkey();
|
||||
|
||||
check_screenshot();
|
||||
check_mute();
|
||||
check_volume();
|
||||
|
||||
check_turbo();
|
||||
|
||||
check_grab_mouse_toggle();
|
||||
|
||||
#ifdef HAVE_OVERLAY
|
||||
rarch_check_overlay();
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_NETPLAY
|
||||
if (g_extern.netplay)
|
||||
{
|
||||
check_netplay_flip();
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
check_pause();
|
||||
check_oneshot();
|
||||
|
||||
@ -2964,30 +2985,6 @@ static void check_flip(void)
|
||||
check_reset();
|
||||
}
|
||||
|
||||
static void do_state_checks(void)
|
||||
{
|
||||
rarch_check_block_hotkey();
|
||||
|
||||
check_screenshot();
|
||||
check_mute();
|
||||
check_volume();
|
||||
|
||||
check_turbo();
|
||||
|
||||
check_grab_mouse_toggle();
|
||||
|
||||
#ifdef HAVE_OVERLAY
|
||||
rarch_check_overlay();
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_NETPLAY
|
||||
if (g_extern.netplay)
|
||||
check_netplay_flip();
|
||||
else
|
||||
#endif
|
||||
check_flip();
|
||||
}
|
||||
|
||||
static void init_state(void)
|
||||
{
|
||||
g_extern.video_active = true;
|
||||
|
Loading…
Reference in New Issue
Block a user