forked from mirror/openmw-tes3mp
Add '0' as an alias for 'OFF' for OPENMW_OPTIMIZE
This commit is contained in:
parent
951c4e12e0
commit
be940656db
1 changed files with 1 additions and 1 deletions
|
@ -452,7 +452,7 @@ namespace Resource
|
|||
{
|
||||
std::string str(env);
|
||||
|
||||
if(str.find("OFF")!=std::string::npos) options = 0;
|
||||
if(str.find("OFF")!=std::string::npos || str.find("0")!= std::string::npos) options = 0;
|
||||
|
||||
if(str.find("~FLATTEN_STATIC_TRANSFORMS")!=std::string::npos) options ^= Optimizer::FLATTEN_STATIC_TRANSFORMS;
|
||||
else if(str.find("FLATTEN_STATIC_TRANSFORMS")!=std::string::npos) options |= Optimizer::FLATTEN_STATIC_TRANSFORMS;
|
||||
|
|
Loading…
Reference in a new issue