Fix usage of trigraphs.

This commit is contained in:
Andreas Bergmeier 2014-02-22 11:53:14 +01:00
parent 7b6ceb48c8
commit 69f7f0eba6

View file

@ -167,7 +167,8 @@ const char* Sys_TimeStampToStr( ID_TIME_T timeStamp )
tm* time = localtime( &ts );
if( time == NULL )
{
return "??/??/???? ??:??";
// String separated to prevent detection of trigraphs
return "??" "/" "??" "/" "???? ??:??";
}
idStr out;