From: havoc Date: Sat, 14 May 2005 02:09:54 +0000 (+0000) Subject: remove an unneeded cast X-Git-Tag: xonotic-v0.1.0preview~4893 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=be4ff008dab4dd397f74147ec38c52735f2e6ca5;p=xonotic%2Fdarkplaces.git remove an unneeded cast git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5288 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cgamevm.c b/cgamevm.c index 3af510f0..666afd84 100644 --- a/cgamevm.c +++ b/cgamevm.c @@ -253,7 +253,7 @@ int CGVM_Model(const char *name) } if (i >= MAX_CGVM_MODELS) return 0; - model = Mod_ForName((char *)name, false, false, false); + model = Mod_ForName(name, false, false, false); if (!model) return 0; strcpy(cgvm_modelname[i], name);