Removed useless operations from OS X system code

No more 'expression result unused' warnings
This commit is contained in:
alexey.lysiuk 2016-02-27 12:48:26 +02:00
parent 202aea61e5
commit 9e016bbfc3
1 changed files with 2 additions and 2 deletions

View File

@ -208,12 +208,12 @@ void I_PrintStr(const char* const message)
else if (0x1d == *srcp || 0x1f == *srcp) // Opening and closing bar character
{
*dstp++ = '-';
*srcp++;
++srcp;
}
else if (0x1e == *srcp) // Middle bar character
{
*dstp++ = '=';
*srcp++;
++srcp;
}
else
{