diff --git a/wadsrc/static/zscript/engine/ui/menu/optionmenu.zs b/wadsrc/static/zscript/engine/ui/menu/optionmenu.zs index f5856b1a8..5dc8643a3 100644 --- a/wadsrc/static/zscript/engine/ui/menu/optionmenu.zs +++ b/wadsrc/static/zscript/engine/ui/menu/optionmenu.zs @@ -225,12 +225,18 @@ class OptionMenu : Menu { if (ev.type == UIEvent.Type_WheelUp) { - MenuScrollViewport(-2, true); + if (MenuScrollViewport(-2, true)) + { + MenuSound ("menu/cursor"); + } return true; } else if (ev.type == UIEvent.Type_WheelDown) { - MenuScrollViewport(2, true); + if (MenuScrollViewport(2, true)) + { + MenuSound ("menu/cursor"); + } return true; } else if (ev.type == UIEvent.Type_Char)