tier1: exclude steam deck from KeyValues

This commit is contained in:
nillerusr 2022-03-15 13:09:34 +03:00
parent c165fb2236
commit 22ed5194a6

View File

@ -2195,6 +2195,9 @@ bool EvaluateConditional( const char *str )
if ( *str == '!' )
bNot = true;
if( Q_stristr( str, "$DECK" ) )
return false ^ bNot; // Steam deck unsupported
if ( Q_stristr( str, "$X360" ) )
return IsX360() ^ bNot;