BLADERUNNER: Use float suffix specifier in Vector init
This commit is contained in:
parent
46fe41db32
commit
9708afdbae
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue