From 91f557d8777d6185ed47927318973d515f8dcbee Mon Sep 17 00:00:00 2001 From: skal Date: Sat, 31 Jan 2026 00:47:55 +0100 Subject: Implement procedural audio generation, spectral effects, and WebGPU particle system --- src/util/mini_math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/util') 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) { -- cgit v1.2.3