From 3918d5e1778b2b95cf23292c3008177dd4a69979 Mon Sep 17 00:00:00 2001 From: fickleheart Date: Sun, 3 Mar 2019 20:33:59 -0600 Subject: [PATCH] Fix missing argument in G_AdjustView call --- src/d_netcmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_netcmd.c b/src/d_netcmd.c index 84f4b5894..80d1fcea4 100644 --- a/src/d_netcmd.c +++ b/src/d_netcmd.c @@ -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;