1
0
mirror of https://github.com/libretro/RetroArch synced 2025-02-23 15:40:35 +00:00

Merge pull request from meleu/patch-21

don't allow slow motion if cheevos enabled
This commit is contained in:
Twinaphex 2018-04-30 18:13:28 +02:00 committed by GitHub
commit 54f54fce28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2970,7 +2970,9 @@ static enum runloop_state runloop_check_state(
}
/* Checks if slowmotion toggle/hold was being pressed and/or held. */
#ifdef HAVE_CHEEVOS
if (!settings->bools.cheevos_enable)
#endif
{
static bool old_slowmotion_button_state = false;
static bool old_slowmotion_hold_button_state = false;