Browse Source

Correct return value.

Jeroen van Rijn 3 years ago
parent
commit
233b32fd3e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vendor/stb/truetype/stb_truetype.odin

+ 1 - 1
vendor/stb/truetype/stb_truetype.odin

@@ -226,7 +226,7 @@ foreign stbtt {
 	// (.ttf) files only contain one font. The number of fonts can be used for
 	// (.ttf) files only contain one font. The number of fonts can be used for
 	// indexing with the previous function where the index is between zero and one
 	// indexing with the previous function where the index is between zero and one
 	// less than the total fonts. If an error occurs, -1 is returned.
 	// less than the total fonts. If an error occurs, -1 is returned.
-	GetNumberOfFonts :: proc(data: [^]byte) -> b32 ---
+	GetNumberOfFonts :: proc(data: [^]byte) -> c.int ---
 	
 	
 	// Each .ttf/.ttc file may have more than one font. Each font has a sequential
 	// Each .ttf/.ttc file may have more than one font. Each font has a sequential
 	// index number starting from 0. Call this function to get the font offset for
 	// index number starting from 0. Call this function to get the font offset for