diff --git a/src/frontend-common/postprocessing_shader.cpp b/src/frontend-common/postprocessing_shader.cpp index 8cbcd50b8..fe38c0fb6 100644 --- a/src/frontend-common/postprocessing_shader.cpp +++ b/src/frontend-common/postprocessing_shader.cpp @@ -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 \ No newline at end of file +} // namespace FrontendCommon