From: divverent Date: Wed, 19 May 2010 06:23:22 +0000 (+0000) Subject: fix warning X-Git-Tag: xonotic-v0.1.0preview~230^2~275 X-Git-Url: https://de.git.xonotic.org/?a=commitdiff_plain;h=a915475ec3441cb67ac0d91abf2c18ba4a7a565e;p=xonotic%2Fdarkplaces.git fix warning git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10203 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/clvm_cmds.c b/clvm_cmds.c index f4a74141..355f345a 100644 --- a/clvm_cmds.c +++ b/clvm_cmds.c @@ -811,7 +811,7 @@ void VM_CL_R_SetView (void) PRVM_G_FLOAT(OFS_RETURN) = r_refdef.view.height; break; case VF_VIEWPORT: - VM_Warning("VM_CL_R_GetView : VF_VIEWPORT can't be retrieved, use VF_MIN/VF_SIZE instead\n", c); + VM_Warning("VM_CL_R_GetView : VF_VIEWPORT can't be retrieved, use VF_MIN/VF_SIZE instead\n"); break; case VF_FOV: VectorSet(PRVM_G_VECTOR(OFS_RETURN), r_refdef.view.ortho_x, r_refdef.view.ortho_y, 0);