PostProcessingShader: Fix a compile warning

pull/880/head
Connor McLaughlin 4 years ago
parent ffd2ac74d9
commit f022bdb328

@ -166,7 +166,7 @@ std::string PostProcessingShader::GetConfigString() const
switch (option.type)
{
case Option::Type::Bool:
ss << (option.value[i].int_value != 0) ? "true" : "false";
ss << ((option.value[i].int_value != 0) ? "true" : "false");
break;
case Option::Type::Int:
@ -416,4 +416,4 @@ void PostProcessingShader::LoadOptions()
}
}
} // namespace FrontendCommon
} // namespace FrontendCommon

Loading…
Cancel
Save