Fix warning message in animation.cfg parsing functions

Signed-off-by: Zack Middleton <zturtleman@gmail.com>
This commit is contained in:
Razish 2013-09-04 15:48:12 -05:00 committed by Zack Middleton
parent 462694763e
commit 61dd609aee
3 changed files with 3 additions and 3 deletions

View File

@ -185,7 +185,7 @@ static qboolean CG_ParseAnimationFile( const char *filename, clientInfo_t *ci )
text_p = prev; // unget the token text_p = prev; // unget the token
break; break;
} }
Com_Printf( "unknown token '%s' is %s\n", token, filename ); Com_Printf( "unknown token '%s' in %s\n", token, filename );
} }
// read information for each frame // read information for each frame

View File

@ -1001,7 +1001,7 @@ static qboolean UI_ParseAnimationFile( const char *filename, animation_t *animat
break; break;
} }
Com_Printf( "unknown token '%s' is %s\n", token, filename ); Com_Printf( "unknown token '%s' in %s\n", token, filename );
} }
// read information for each frame // read information for each frame

View File

@ -1088,7 +1088,7 @@ static qboolean UI_ParseAnimationFile( const char *filename, animation_t *animat
break; break;
} }
Com_Printf( "unknown token '%s' is %s\n", token, filename ); Com_Printf( "unknown token '%s' in %s\n", token, filename );
} }
// read information for each frame // read information for each frame