mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-05 01:38:13 +00:00
Fix missing argument in G_AdjustView call
This commit is contained in:
parent
18f34bc182
commit
3918d5e177
1 changed files with 1 additions and 1 deletions
|
|
@ -2084,7 +2084,7 @@ static void Command_SetViews_f(void)
|
|||
newsplits = atoi(COM_Argv(1));
|
||||
newsplits = min(max(newsplits, 1), 4);
|
||||
if (newsplits > splits)
|
||||
G_AdjustView(newsplits, 0);
|
||||
G_AdjustView(newsplits, 0, true);
|
||||
else
|
||||
{
|
||||
splitscreen = newsplits-1;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue