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:
hendricks266 2014-12-28 21:35:32 +00:00
parent 6797e8a3d5
commit 3bc47565a3

View file

@ -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;