Extrapolated menu sounds.

Custom menu slider graphics.
This commit is contained in:
Mari the Deer 2021-07-21 14:24:33 +02:00
commit b239b44cb4
11 changed files with 9 additions and 8 deletions

BIN
fonts/consolefont/0010.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 B

BIN
fonts/consolefont/0011.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 B

BIN
fonts/consolefont/0012.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 B

BIN
fonts/consolefont/0013.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 B

View file

@ -1,3 +1,3 @@
[default]
SWWM_MODVER="\chSWWM \czGZ\c- \cw0.9.11b-pre r577 \cu(Tue 20 Jul 12:35:29 CEST 2021)\c-";
SWWM_SHORTVER="\cw0.9.11b-pre r577 \cu(2021-07-20 12:35:29)\c-";
SWWM_MODVER="\chSWWM \czGZ\c- \cw0.9.11b-pre r578 \cu(Wed 21 Jul 14:24:33 CEST 2021)\c-";
SWWM_SHORTVER="\cw0.9.11b-pre r578 \cu(2021-07-21 14:24:33)\c-";

View file

@ -1107,12 +1107,13 @@ newkeen/bounce sounds/keenbounce.ogg
menu/activate sounds/hmenu/hmenu1.ogg
menu/backup sounds/hmenu/hmenu2.ogg
menu/prompt sounds/hmenu/hmenu1.ogg
menu/cursor sounds/hmenu/hmenu1.ogg
menu/change sounds/hmenu/hmenu1.ogg
menu/invalid sounds/hmenu/hmenu2.ogg
menu/cursor sounds/hmenu/hmenu4.ogg
menu/change sounds/hmenu/hmenu3.ogg
menu/invalid sounds/hmenu/hmenu3.ogg
menu/dismiss sounds/hmenu/hmenu2.ogg
menu/choose sounds/hmenu/hmenu1.ogg
menu/choose sounds/hmenu/hmenu2.ogg
menu/clear sounds/hmenu/hmenu2.ogg
menu/advance sounds/hmenu/hmenu1.ogg
menu/demoopen sounds/menu/openkbase.ogg
menu/demotab sounds/menu/menutab.ogg

Binary file not shown.

Binary file not shown.

BIN
sounds/hmenu/hmenu3.ogg Normal file

Binary file not shown.

BIN
sounds/hmenu/hmenu4.ogg Normal file

Binary file not shown.

View file

@ -50,7 +50,7 @@ Class SWWMHelpMenu : GenericMenu
case MKEY_PageDown:
if ( (curpage < NUM_HELP_PAGES-1) && ((prevpage == -1) || (alph >= 1.)) )
{
MenuSound("menu/choose");
MenuSound("menu/cursor");
prevpage = curpage;
curpage++;
pagedir = 1;
@ -64,7 +64,7 @@ Class SWWMHelpMenu : GenericMenu
case MKEY_PageUp:
if ( (curpage > 0) && ((prevpage == -1) || (alph >= 1.)) )
{
MenuSound("menu/choose");
MenuSound("menu/cursor");
prevpage = curpage;
curpage--;
pagedir = -1;