aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2024-07-13 00:16:34 +0200
committerGitHub <noreply@github.com>2024-07-13 00:16:34 +0200
commitd845a07519ef940597989cdf4e4f3aa9e01cab05 (patch)
treea394343b1505fa40954fdb5a936940e1c7177ca3
parente7156745122fdf1649b63c69191478542b91157c (diff)
parentb4683f4399a7c83152e986ee8c61acabee806962 (diff)
Merge pull request #3912 from xzores/master
Update stb_truetype.odin
-rw-r--r--vendor/stb/truetype/stb_truetype.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/stb/truetype/stb_truetype.odin b/vendor/stb/truetype/stb_truetype.odin
index 6993cd2b7..e6defff5f 100644
--- a/vendor/stb/truetype/stb_truetype.odin
+++ b/vendor/stb/truetype/stb_truetype.odin
@@ -568,7 +568,7 @@ foreign stbtt {
// some of the values for the IDs are below; for more see the truetype spec:
// http://developer.apple.com/textfonts/TTRefMan/RM06/Chap6name.html
// http://www.microsoft.com/typography/otspec/name.htm
- GetFontNameString :: proc(font: ^fontinfo, length: c.int, platformID: PLATFORM_ID, encodingID, languageID, nameID: c.int) -> cstring ---
+ GetFontNameString :: proc(font: ^fontinfo, length: ^c.int, platformID: PLATFORM_ID, encodingID, languageID, nameID: c.int) -> cstring ---
}