mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-02-21 11:11:36 +00:00
Fix usage of trigraphs.
This commit is contained in:
parent
7b6ceb48c8
commit
69f7f0eba6
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue