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:
parent
0eb00928ba
commit
d3b98b8243
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue