Fix warning message in animation.cfg parsing functions
Signed-off-by: Zack Middleton <zturtleman@gmail.com>
This commit is contained in:
@@ -185,7 +185,7 @@ static qboolean CG_ParseAnimationFile( const char *filename, clientInfo_t *ci )
|
||||
text_p = prev; // unget the token
|
||||
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
|
||||
|
@@ -1001,7 +1001,7 @@ static qboolean UI_ParseAnimationFile( const char *filename, animation_t *animat
|
||||
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
|
||||
|
@@ -1088,7 +1088,7 @@ static qboolean UI_ParseAnimationFile( const char *filename, animation_t *animat
|
||||
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
|
||||
|
Reference in New Issue
Block a user