From 5379c8c1ac1c2e839382e228944b11abdaffcdc7 Mon Sep 17 00:00:00 2001 From: A1029384756 Date: Tue, 13 May 2025 15:44:20 -0400 Subject: [PATCH] [vendor:sdl3/ttf] - changed indices to multipointer --- vendor/sdl3/ttf/sdl3_ttf.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/sdl3/ttf/sdl3_ttf.odin b/vendor/sdl3/ttf/sdl3_ttf.odin index 08b7a4e1f..d3b8d7508 100644 --- a/vendor/sdl3/ttf/sdl3_ttf.odin +++ b/vendor/sdl3/ttf/sdl3_ttf.odin @@ -98,7 +98,7 @@ GPUAtlasDrawSequence :: struct { atlas_texture: ^SDL.GPUTexture, xy, uv: [^]SDL.FPoint, num_vertices: c.int, - indices: ^c.int, + indices: [^]c.int, num_indices: c.int, image_type: ImageType, next: ^GPUAtlasDrawSequence,