mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-04-03 23:25:34 +00:00
tier1: exclude steam deck from KeyValues
This commit is contained in:
parent
c165fb2236
commit
22ed5194a6
@ -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…
Reference in New Issue
Block a user