mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Ifdef this
This commit is contained in:
parent
12368d6cbd
commit
cbfe33c579
1 changed files with 6 additions and 2 deletions
|
@ -3347,8 +3347,12 @@ static enum runloop_state runloop_check_state(
|
||||||
{
|
{
|
||||||
char s[128];
|
char s[128];
|
||||||
unsigned t = 0;
|
unsigned t = 0;
|
||||||
bool rewinding = state_manager_check_rewind(BIT256_GET(current_input, RARCH_REWIND),
|
#if defined(HAVE_MENU) && defined(HAVE_MENU_WIDGETS)
|
||||||
settings->uints.rewind_granularity, runloop_paused, s, sizeof(s), &t);
|
bool rewinding = state_manager_check_rewind(
|
||||||
|
BIT256_GET(current_input, RARCH_REWIND),
|
||||||
|
settings->uints.rewind_granularity,
|
||||||
|
runloop_paused, s, sizeof(s), &t);
|
||||||
|
#endif
|
||||||
|
|
||||||
s[0] = '\0';
|
s[0] = '\0';
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue