OpenTyrian: Volume Up/Down keys navigate menu, mouse click will exit Enter High Score screen

This commit is contained in:
pelya
2010-09-20 15:53:04 +03:00
parent c8cdb9455e
commit f99fd72f38
22 changed files with 65 additions and 36 deletions

View File

@@ -3547,6 +3547,7 @@ bool JE_titleScreen( JE_boolean animate )
switch (lastkey_sym)
{
case SDLK_UP:
case SDLK_LCTRL:
if (menu == 0)
menu = menunum-1;
else
@@ -3554,6 +3555,7 @@ bool JE_titleScreen( JE_boolean animate )
JE_playSampleNum(S_CURSOR);
break;
case SDLK_DOWN:
case SDLK_LALT:
if (menu == menunum-1)
menu = 0;
else