removing sluggishness by iterate data after calling callbacks

This commit is contained in:
Jay McCarthy 2015-05-17 05:49:33 -04:00
parent 5da758c12e
commit 09cb703e35

View File

@ -91,6 +91,8 @@ int menu_entries_select_back(void)
if (menu_needs_refresh())
menu_do_refresh(MENU_ACTION_CANCEL);
rarch_main_data_iterate();
return 0;
}
@ -419,6 +421,8 @@ int menu_entry_select(uint32_t i)
if (action != MENU_ACTION_NOOP)
ret = menu_entry_action(&entry, i, action);
rarch_main_data_iterate();
return ret;
}