mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- Fixed: Pressing left or right on a video mode option line should play "menu/cursor", not "menu/change".
SVN r2974 (trunk)
This commit is contained in:
parent
18205c82a6
commit
0604d308d5
1 changed files with 2 additions and 2 deletions
|
@ -891,13 +891,13 @@ public:
|
|||
if (mkey == MKEY_Left)
|
||||
{
|
||||
if (--mSelection < 0) mSelection = mMaxValid;
|
||||
S_Sound (CHAN_VOICE | CHAN_UI, "menu/change", snd_menuvolume, ATTN_NONE);
|
||||
S_Sound (CHAN_VOICE | CHAN_UI, "menu/cursor", snd_menuvolume, ATTN_NONE);
|
||||
return true;
|
||||
}
|
||||
else if (mkey == MKEY_Right)
|
||||
{
|
||||
if (++mSelection > mMaxValid) mSelection = 0;
|
||||
S_Sound (CHAN_VOICE | CHAN_UI, "menu/change", snd_menuvolume, ATTN_NONE);
|
||||
S_Sound (CHAN_VOICE | CHAN_UI, "menu/cursor", snd_menuvolume, ATTN_NONE);
|
||||
return true;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue