mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-04-24 10:38:53 +00:00
Merge pull request #75 from abergmeier/fix_trigraphs
Fix usage of trigraphs.
This commit is contained in:
commit
4a124390a4
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