1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-22 23:33:04 +01:00

Fix compile

This commit is contained in:
Ted John
2020-02-25 21:10:28 +00:00
parent e6011c891d
commit 00293d20e8

View File

@@ -287,7 +287,7 @@ private:
void StringifyBoolean(const DukValue& val)
{
_ss << val.as_bool() ? "true" : "false";
_ss << (val.as_bool() ? "true" : "false");
}
void StringifyNumber(const DukValue& val)