add a missing \n from a cgame print

(thanks again /dev/hc)
This commit is contained in:
Zachary Slater 2011-01-27 07:22:25 +00:00
parent 5e2ccac7f0
commit 2a083d6d60

View file

@ -261,7 +261,7 @@ static snapshot_t *CG_ReadNextSnapshot( void ) {
snapshot_t *dest; snapshot_t *dest;
if ( cg.latestSnapshotNum > cgs.processedSnapshotNum + 1000 ) { if ( cg.latestSnapshotNum > cgs.processedSnapshotNum + 1000 ) {
CG_Printf( "WARNING: CG_ReadNextSnapshot: way out of range, %i > %i", CG_Printf( "WARNING: CG_ReadNextSnapshot: way out of range, %i > %i\n",
cg.latestSnapshotNum, cgs.processedSnapshotNum ); cg.latestSnapshotNum, cgs.processedSnapshotNum );
} }