1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-24 00:03:11 +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) void StringifyBoolean(const DukValue& val)
{ {
_ss << val.as_bool() ? "true" : "false"; _ss << (val.as_bool() ? "true" : "false");
} }
void StringifyNumber(const DukValue& val) void StringifyNumber(const DukValue& val)