mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-24 11:45:16 +00:00
Move check_netplay_flip to top of check_flip function
This commit is contained in:
parent
6a0c3ff25d
commit
3e0f624e25
15
retroarch.c
15
retroarch.c
@ -2744,6 +2744,14 @@ static void check_grab_mouse_toggle(void)
|
||||
|
||||
static void check_flip(void)
|
||||
{
|
||||
#ifdef HAVE_NETPLAY
|
||||
if (g_extern.netplay)
|
||||
{
|
||||
check_netplay_flip();
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
||||
check_pause();
|
||||
check_oneshot();
|
||||
|
||||
@ -2792,12 +2800,7 @@ static void do_state_checks(void)
|
||||
rarch_check_overlay();
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_NETPLAY
|
||||
if (g_extern.netplay)
|
||||
check_netplay_flip();
|
||||
else
|
||||
#endif
|
||||
check_flip();
|
||||
check_flip();
|
||||
}
|
||||
|
||||
static void init_state(void)
|
||||
|
Loading…
Reference in New Issue
Block a user