mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix roundqueue empty error starting a splitscreen GP
Fixes KartKrew/Kart#1156
This commit is contained in:
parent
ec63cdcd78
commit
73c9a7a90f
1 changed files with 2 additions and 2 deletions
|
|
@ -44,7 +44,7 @@ static void M_StartCup(UINT8 entry)
|
||||||
if (ssplayers > 0)
|
if (ssplayers > 0)
|
||||||
{
|
{
|
||||||
// Splitscreen is not accomodated with this recovery feature.
|
// Splitscreen is not accomodated with this recovery feature.
|
||||||
entry = 0;
|
entry = UINT8_MAX;
|
||||||
}
|
}
|
||||||
|
|
||||||
S_StartSound(NULL, sfx_s3k63);
|
S_StartSound(NULL, sfx_s3k63);
|
||||||
|
|
@ -184,7 +184,7 @@ static void M_GPBackup(INT32 choice)
|
||||||
{
|
{
|
||||||
M_StartCup(roundqueue.position-1);
|
M_StartCup(roundqueue.position-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue