diff --git a/fonts/consolefont/0010.png b/fonts/consolefont/0010.png new file mode 100644 index 000000000..5262f4548 Binary files /dev/null and b/fonts/consolefont/0010.png differ diff --git a/fonts/consolefont/0011.png b/fonts/consolefont/0011.png new file mode 100644 index 000000000..9a5d5f62b Binary files /dev/null and b/fonts/consolefont/0011.png differ diff --git a/fonts/consolefont/0012.png b/fonts/consolefont/0012.png new file mode 100644 index 000000000..e812b1f23 Binary files /dev/null and b/fonts/consolefont/0012.png differ diff --git a/fonts/consolefont/0013.png b/fonts/consolefont/0013.png new file mode 100644 index 000000000..d0f847189 Binary files /dev/null and b/fonts/consolefont/0013.png differ diff --git a/language.version b/language.version index bdaa47f65..ae968fa7b 100644 --- a/language.version +++ b/language.version @@ -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-"; diff --git a/sndinfo.txt b/sndinfo.txt index c36300064..9d316214c 100644 --- a/sndinfo.txt +++ b/sndinfo.txt @@ -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 diff --git a/sounds/hmenu/hmenu1.ogg b/sounds/hmenu/hmenu1.ogg index b3a811039..858a4da43 100644 Binary files a/sounds/hmenu/hmenu1.ogg and b/sounds/hmenu/hmenu1.ogg differ diff --git a/sounds/hmenu/hmenu2.ogg b/sounds/hmenu/hmenu2.ogg index fd96fffb5..b8499fb1f 100644 Binary files a/sounds/hmenu/hmenu2.ogg and b/sounds/hmenu/hmenu2.ogg differ diff --git a/sounds/hmenu/hmenu3.ogg b/sounds/hmenu/hmenu3.ogg new file mode 100644 index 000000000..e2b45babf Binary files /dev/null and b/sounds/hmenu/hmenu3.ogg differ diff --git a/sounds/hmenu/hmenu4.ogg b/sounds/hmenu/hmenu4.ogg new file mode 100644 index 000000000..6482aca73 Binary files /dev/null and b/sounds/hmenu/hmenu4.ogg differ diff --git a/zscript/menu/swwm_help.zsc b/zscript/menu/swwm_help.zsc index de11f9e62..1d600ab61 100644 --- a/zscript/menu/swwm_help.zsc +++ b/zscript/menu/swwm_help.zsc @@ -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;