From 9708afdbaec7af78d035527011b08dbc5b09df5c Mon Sep 17 00:00:00 2001 From: antoniou79 Date: Fri, 4 Sep 2020 23:16:02 +0300 Subject: [PATCH] BLADERUNNER: Use float suffix specifier in Vector init --- engines/bladerunner/vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/bladerunner/vector.h b/engines/bladerunner/vector.h index 52883cb5877..d6fb12d9d87 100644 --- a/engines/bladerunner/vector.h +++ b/engines/bladerunner/vector.h @@ -51,7 +51,7 @@ public: float y; float z; - Vector3() : x(0.0), y(0.0), z(0.0) {} + Vector3() : x(0.0f), y(0.0f), z(0.0f) {} Vector3(float ax, float ay, float az) : x(ax), y(ay), z(az) {}