/source/duke3d/src/menus.cpp |
---|
6562,7 → 6562,7 |
{ |
case MM_Up: |
if (!object->findhigh[object->currentList]) |
break; |
return; |
if (object->findhigh[object->currentList]->prev) |
{ |
object->findhigh[object->currentList] = object->findhigh[object->currentList]->prev; |
6575,7 → 6575,7 |
case MM_Down: |
if (!object->findhigh[object->currentList]) |
break; |
return; |
if (object->findhigh[object->currentList]->next) |
{ |
object->findhigh[object->currentList] = object->findhigh[object->currentList]->next; |