mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-29 12:40:40 +00:00
Fix missing argument in G_AdjustView call
This commit is contained in:
parent
4b2938a540
commit
272ba600e2
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…
Reference in a new issue