square: Fix indices
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 8m11s

This commit is contained in:
Florian RICHER 2025-05-29 16:09:04 +02:00
parent 05532756cf
commit 8b16def890
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77

View file

@ -53,7 +53,7 @@ const VERTICES: [Vertex2D; 4] = [
},
];
const INDICES: [u32; 6] = [0, 1, 2, 2, 1, 3];
const INDICES: [u32; 6] = [0, 2, 1, 2, 3, 1];
pub mod shaders {
pub mod vs {