From d3b98b8243e1351aebf032e983e71b20c0ecbf86 Mon Sep 17 00:00:00 2001
From: Spoike <acceptthis@users.sourceforge.net>
Date: Fri, 28 Jan 2005 04:22:02 +0000
Subject: [PATCH] TF uses v_cshift on it's own to wipe the screen, Allow it to
 keep that behavior.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@842 fc73d0e0-1445-4013-8a0c-d673dee63da5
---
 engine/client/view.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/engine/client/view.c b/engine/client/view.c
index 0f53522c6..8ca546d32 100644
--- a/engine/client/view.c
+++ b/engine/client/view.c
@@ -450,8 +450,8 @@ V_cshift_f
 */
 void V_cshift_f (void)
 {
-	if (Cmd_Argc() != 5)	//this is actually to warn of a malice bug (and prevent a totally black screen) more than it is to help the user. :/
-	{
+	if (Cmd_Argc() != 5 && Cmd_Argc() != 1)	//this is actually to warn of a malice bug (and prevent a totally black screen) more than it is to help the user. :/
+	{										//The 1 is so teamfortress can use it to clear.
 		Con_Printf("v_cshift: v_cshift <r> <g> <b> <alpha>\n");
 		return;
 	}