mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Revert "Make the second page of cups accessible by up/down input at the limit, rather than left/right input"
This reverts commit f01bb3e793.
This commit is contained in:
parent
f01bb3e793
commit
4235798d8a
1 changed files with 10 additions and 10 deletions
|
|
@ -3528,7 +3528,12 @@ void M_CupSelectHandler(INT32 choice)
|
|||
{
|
||||
cupgrid.x++;
|
||||
if (cupgrid.x >= CUPMENU_COLUMNS)
|
||||
{
|
||||
cupgrid.x = 0;
|
||||
cupgrid.pageno++;
|
||||
if (cupgrid.pageno >= cupgrid.numpages)
|
||||
cupgrid.pageno = 0;
|
||||
}
|
||||
S_StartSound(NULL, sfx_s3k5b);
|
||||
M_SetMenuDelay(pid);
|
||||
}
|
||||
|
|
@ -3536,7 +3541,12 @@ void M_CupSelectHandler(INT32 choice)
|
|||
{
|
||||
cupgrid.x--;
|
||||
if (cupgrid.x < 0)
|
||||
{
|
||||
cupgrid.x = CUPMENU_COLUMNS-1;
|
||||
cupgrid.pageno--;
|
||||
if (cupgrid.pageno < 0)
|
||||
cupgrid.pageno = cupgrid.numpages-1;
|
||||
}
|
||||
S_StartSound(NULL, sfx_s3k5b);
|
||||
M_SetMenuDelay(pid);
|
||||
}
|
||||
|
|
@ -3545,12 +3555,7 @@ void M_CupSelectHandler(INT32 choice)
|
|||
{
|
||||
cupgrid.y++;
|
||||
if (cupgrid.y >= CUPMENU_ROWS)
|
||||
{
|
||||
cupgrid.y = 0;
|
||||
cupgrid.pageno--;
|
||||
if (cupgrid.pageno < 0)
|
||||
cupgrid.pageno = cupgrid.numpages-1;
|
||||
}
|
||||
S_StartSound(NULL, sfx_s3k5b);
|
||||
M_SetMenuDelay(pid);
|
||||
}
|
||||
|
|
@ -3558,12 +3563,7 @@ void M_CupSelectHandler(INT32 choice)
|
|||
{
|
||||
cupgrid.y--;
|
||||
if (cupgrid.y < 0)
|
||||
{
|
||||
cupgrid.y = CUPMENU_ROWS-1;
|
||||
cupgrid.pageno++;
|
||||
if (cupgrid.pageno >= cupgrid.numpages)
|
||||
cupgrid.pageno = 0;
|
||||
}
|
||||
S_StartSound(NULL, sfx_s3k5b);
|
||||
M_SetMenuDelay(pid);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue