From 6f6ee7f713597d2d8df8d5cc0b6c4ed7cf279b6e Mon Sep 17 00:00:00 2001 From: neumond Date: Tue, 25 Mar 2014 18:58:25 +0400 Subject: [PATCH] removed unused flag --- radiant/eclass_def.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/radiant/eclass_def.cpp b/radiant/eclass_def.cpp index 18f3ca6f..7db391c5 100644 --- a/radiant/eclass_def.cpp +++ b/radiant/eclass_def.cpp @@ -159,8 +159,9 @@ eclass_t *Eclass_InitFromText( char *text ){ text++; // get the size - text = COM_Parse( text ); + t = COM_Parse( text ); if ( Get_COM_Token()[0] == '(' ) { // parse the size as two vectors + text = t; e->fixedsize = true; r = sscanf( text,"%f %f %f) (%f %f %f)", &e->mins[0], &e->mins[1], &e->mins[2], &e->maxs[0], &e->maxs[1], &e->maxs[2] );