mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +00:00
Fix warning message in animation.cfg parsing functions
Signed-off-by: Zack Middleton <zturtleman@gmail.com>
This commit is contained in:
parent
462694763e
commit
61dd609aee
3 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue