summaryrefslogtreecommitdiff
path: root/source/cl_parse.c
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2010-02-28 19:41:35 +0000
committerAndrey Nazarov <skuller@skuller.net>2010-02-28 19:41:35 +0000
commitf73160ca01dd262d2031890e697dd63963f4bc8b (patch)
treef7acfadeeb5c57568190ac616da4849eed689ddd /source/cl_parse.c
parent7e48fd890309c7d2bd2176e6df1ed0cc661bcb6f (diff)
Moved some fx code to where it really belongs.
Diffstat (limited to 'source/cl_parse.c')
-rw-r--r--source/cl_parse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/cl_parse.c b/source/cl_parse.c
index bb1f0e1..5b32eaf 100644
--- a/source/cl_parse.c
+++ b/source/cl_parse.c
@@ -1012,7 +1012,7 @@ ACTION MESSAGES
tent_params_t te;
-static void CL_ParseTEnt( void ) {
+static void CL_ParseTEntParams( void ) {
te.type = MSG_ReadByte();
switch( te.type ) {
@@ -1132,7 +1132,7 @@ static void CL_ParseTEnt( void ) {
Com_Error( ERR_DROP, "%s: bad type", __func__ );
}
- CL_AddTEnt();
+ CL_ParseTEnt();
}
/*
@@ -1532,7 +1532,7 @@ void CL_ParseServerMessage( void ) {
break;
case svc_temp_entity:
- CL_ParseTEnt();
+ CL_ParseTEntParams();
break;
case svc_muzzleflash: