This commit is contained in:
twinaphex 2015-12-11 21:24:51 +01:00
parent 4c8c2ea30d
commit 37aef67dae

View File

@ -513,9 +513,9 @@ bool menu_entries_needs_refresh(void)
if (!entries || entries->nonblocking_refresh)
return false;
if (entries->need_refresh)
return true;
return false;
if (!entries->need_refresh)
return false;
return true;
}
void menu_entries_set_refresh(bool nonblocking)