mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 03:51:50 +00:00
Fix count limiter not always working right for titledemo netreplays
This commit is contained in:
parent
5e6b3a650c
commit
a5a98eec2f
1 changed files with 2 additions and 1 deletions
|
|
@ -6903,7 +6903,8 @@ void G_DoPlayDemo(char *defdemoname)
|
||||||
|
|
||||||
if (titledemo)
|
if (titledemo)
|
||||||
{
|
{
|
||||||
splitscreen = min(min(3, numslots-1), max(0, M_RandomKey(6)-1)); // Bias toward 1p and 4p views
|
splitscreen = M_RandomKey(6)-1;
|
||||||
|
splitscreen = min(min(3, numslots-1), max(0, splitscreen)); // Bias toward 1p and 4p views
|
||||||
|
|
||||||
for (p = 0; p <= splitscreen; p++)
|
for (p = 0; p <= splitscreen; p++)
|
||||||
G_ResetView(p+1, slots[M_RandomKey(numslots)], false);
|
G_ResetView(p+1, slots[M_RandomKey(numslots)], false);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue