Fix missing argument in G_AdjustView call

This commit is contained in:
fickleheart 2019-03-03 20:33:59 -06:00
parent 4b2938a540
commit 272ba600e2

View file

@ -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;