Browse Source

[vendor:sdl3/ttf] - changed indices to multipointer

A1029384756 3 months ago
parent
commit
5379c8c1ac
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vendor/sdl3/ttf/sdl3_ttf.odin

+ 1 - 1
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,