mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-04 19:15:42 -04: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…
x
Reference in New Issue
Block a user