summaryrefslogtreecommitdiff
path: root/src/util/mini_math.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/mini_math.h')
-rw-r--r--src/util/mini_math.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/mini_math.h b/src/util/mini_math.h
index b809323..3024737 100644
--- a/src/util/mini_math.h
+++ b/src/util/mini_math.h
@@ -103,7 +103,7 @@ struct vec3 {
struct {
float x, y, z;
float _;
- }; // _ is padding for 16-byte alignment
+ }; // _ is padding for 16-byte alignment
float v[4]; // Size 4 to match alignment
};
vec3(float x = 0, float y = 0, float z = 0) : x(x), y(y), z(z), _(0) {