- Merge http://svn.icculus.org/tremulous?view=rev&revision=2185, patch by Chris Schwarz
- Remove Q_snprintf as Com_sprintf exists already
This commit is contained in:
parent
a447aa82af
commit
f981087d7a
3 changed files with 1 additions and 14 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue