mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-24 06:21:18 +00:00
Fix video mode controls being reversed
This commit is contained in:
parent
d0a6fe18c4
commit
256ec0517f
1 changed files with 2 additions and 2 deletions
|
|
@ -4403,7 +4403,7 @@ void M_HandleVideoModes(INT32 ch)
|
|||
|
||||
else
|
||||
{
|
||||
if (menucmd[pid].dpad_ud < 0)
|
||||
if (menucmd[pid].dpad_ud > 0)
|
||||
{
|
||||
S_StartSound(NULL, sfx_menu1);
|
||||
if (++optionsmenu.vidm_selected >= optionsmenu.vidm_nummodes)
|
||||
|
|
@ -4412,7 +4412,7 @@ void M_HandleVideoModes(INT32 ch)
|
|||
M_SetMenuDelay(pid);
|
||||
}
|
||||
|
||||
else if (menucmd[pid].dpad_ud > 0)
|
||||
else if (menucmd[pid].dpad_ud < 0)
|
||||
{
|
||||
S_StartSound(NULL, sfx_menu1);
|
||||
if (--optionsmenu.vidm_selected < 0)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue