From b9e5f027eba5a1103d3d073843cfe80ce0f767ed Mon Sep 17 00:00:00 2001 From: Ed_ Date: Mon, 12 Feb 2024 12:05:49 -0500 Subject: [PATCH] Change raylib.Camera2D.chars to glyphs --- vendor/raylib/raylib.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/raylib/raylib.odin b/vendor/raylib/raylib.odin index 7fb87a2ed..e4b4b3a0b 100644 --- a/vendor/raylib/raylib.odin +++ b/vendor/raylib/raylib.odin @@ -322,7 +322,7 @@ Font :: struct { charsPadding: c.int, // Padding around the chars texture: Texture2D, // Characters texture atlas recs: [^]Rectangle, // Characters rectangles in texture - chars: [^]GlyphInfo, // Characters info data + glyphs: [^]GlyphInfo, // Characters info data } // Camera type, defines a camera position/orientation in 3d space