mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 06:39:17 +00:00
BLADERUNNER: Use float suffix specifier in Vector init
This commit is contained in:
parent
46fe41db32
commit
9708afdbae
@ -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) {}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user