1
0
Fork 0
forked from fte/fteqw

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
This commit is contained in:
Spoike 2005-01-28 04:22:02 +00:00
parent 0eb00928ba
commit d3b98b8243

View file

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