mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
Menus: Fix opening a MenuEntryOptionList when the option's value is "Custom".
git-svn-id: https://svn.eduke32.com/eduke32@4867 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
6797e8a3d5
commit
3bc47565a3
1 changed files with 1 additions and 1 deletions
|
@ -4573,7 +4573,7 @@ static int32_t M_RunMenuInput_MenuEntryOption_Activate(MenuEntry_t *entry, MenuO
|
|||
return M_RunMenuInput_MenuEntryOption_Movement(entry, object, MM_Right);
|
||||
else
|
||||
{
|
||||
object->options->currentEntry = object->currentOption;
|
||||
object->options->currentEntry = object->currentOption >= 0 ? object->currentOption : 0;
|
||||
M_RunMenuInput_MenuEntryOptionList_MovementVerify(object);
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue