mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
Removed useless operations from OS X system code
No more 'expression result unused' warnings
This commit is contained in:
parent
202aea61e5
commit
9e016bbfc3
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue