mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-04 18:09:53 +03:00
Pretend macOS to be Linux in KeyValues (#145)
Workaround for FL_Load_Glyph error
This commit is contained in:
@@ -2208,10 +2208,10 @@ bool EvaluateConditional( const char *str )
|
||||
return IsWindows() ^ bNot;
|
||||
|
||||
if ( Q_stristr( str, "$OSX" ) )
|
||||
return IsOSX() ^ bNot;
|
||||
return bNot;
|
||||
|
||||
if ( Q_stristr( str, "$LINUX" ) )
|
||||
return IsLinux() ^ bNot;
|
||||
return (IsLinux() || IsOSX()) ^ bNot;
|
||||
|
||||
if ( Q_stristr( str, "$POSIX" ) )
|
||||
return IsPosix() ^ bNot;
|
||||
|
||||
Reference in New Issue
Block a user