mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 14:25:37 +00:00
PostProcessingShader: Fix a compile warning
This commit is contained in:
parent
ffd2ac74d9
commit
f022bdb328
|
@ -166,7 +166,7 @@ std::string PostProcessingShader::GetConfigString() const
|
||||||
switch (option.type)
|
switch (option.type)
|
||||||
{
|
{
|
||||||
case Option::Type::Bool:
|
case Option::Type::Bool:
|
||||||
ss << (option.value[i].int_value != 0) ? "true" : "false";
|
ss << ((option.value[i].int_value != 0) ? "true" : "false");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case Option::Type::Int:
|
case Option::Type::Int:
|
||||||
|
|
Loading…
Reference in a new issue