- Remove Q_snprintf as Com_sprintf exists already
This commit is contained in:
Thilo Schulz 2011-06-15 15:31:37 +00:00
parent a447aa82af
commit f981087d7a
3 changed files with 1 additions and 14 deletions

View file

@ -1113,7 +1113,7 @@ void QDECL G_LogPrintf( const char *fmt, ... ) {
char string[1024];
int min, tens, sec;
sec = level.time / 1000;
sec = ( level.time - level.startTime ) / 1000;
min = sec / 60;
sec -= min * 60;