Fix minor warning from clang.

This commit is contained in:
Stephen Anthony 2019-12-18 15:56:39 -03:30
parent 8a93e70cc9
commit 8782a39ce7
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ string TIASurface::effectsInfo() const
break;
}
buf << ", inter=" << myOSystem.settings().getBool("tia.inter") ? "enabled" : "disabled";
buf << ", inter=" << (myOSystem.settings().getBool("tia.inter") ? "enabled" : "disabled");
return buf.str();
}