tier1: exclude steam deck from KeyValues
This commit is contained in:
parent
55ba87f223
commit
ae1dbaf5f7
1 changed files with 7 additions and 4 deletions
|
@ -2195,6 +2195,9 @@ bool EvaluateConditional( const char *str )
|
||||||
if ( *str == '!' )
|
if ( *str == '!' )
|
||||||
bNot = true;
|
bNot = true;
|
||||||
|
|
||||||
|
if( Q_stristr( str, "$DECK" ) )
|
||||||
|
return false ^ bNot; // Steam deck unsupported
|
||||||
|
|
||||||
if ( Q_stristr( str, "$X360" ) )
|
if ( Q_stristr( str, "$X360" ) )
|
||||||
return IsX360() ^ bNot;
|
return IsX360() ^ bNot;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue