BUGFIX root_menu.c
Change-Id: Ie6268c63f5ed5197d2da678851b4bfdf7764252c
This commit is contained in:
parent
b31444261e
commit
a5e684c894
1 changed files with 1 additions and 1 deletions
|
@ -735,10 +735,10 @@ static int load_plugin_screen(char *key)
|
||||||
continue;
|
continue;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
ret_val = GO_TO_PREVIOUS;
|
||||||
/* Prevents infinite loop with WPS, Plugins, Previous Screen*/
|
/* Prevents infinite loop with WPS, Plugins, Previous Screen*/
|
||||||
if (ret == PLUGIN_OK && old_global == GO_TO_WPS && !audio_status())
|
if (ret == PLUGIN_OK && old_global == GO_TO_WPS && !audio_status())
|
||||||
ret_val = GO_TO_ROOT;
|
ret_val = GO_TO_ROOT;
|
||||||
ret_val = GO_TO_PREVIOUS;
|
|
||||||
last_screen = (old_previous == next_screen || old_global == GO_TO_ROOT)
|
last_screen = (old_previous == next_screen || old_global == GO_TO_ROOT)
|
||||||
? GO_TO_ROOT : old_previous;
|
? GO_TO_ROOT : old_previous;
|
||||||
if (last_screen == GO_TO_ROOT)
|
if (last_screen == GO_TO_ROOT)
|
||||||
|
|
Loading…
Reference in a new issue