Browse Source

[rtext] Added cast to ExportFontAsCode output to fix C++ compiler errors (#4013)

DarkAssassin23 1 năm trước cách đây
mục cha
commit
2804e75869
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/rtext.c

+ 2 - 2
src/rtext.c

@@ -1093,8 +1093,8 @@ bool ExportFontAsCode(Font font, const char *fileName)
 #else
     byteCount += sprintf(txtData + byteCount, "    // Assign glyph recs and info data directly\n");
     byteCount += sprintf(txtData + byteCount, "    // WARNING: This font data must not be unloaded\n");
-    byteCount += sprintf(txtData + byteCount, "    font.recs = fontRecs_%s;\n", fileNamePascal);
-    byteCount += sprintf(txtData + byteCount, "    font.glyphs = fontGlyphs_%s;\n\n", fileNamePascal);
+    byteCount += sprintf(txtData + byteCount, "    font.recs = (Rectangle *)fontRecs_%s;\n", fileNamePascal);
+    byteCount += sprintf(txtData + byteCount, "    font.glyphs = (GlyphInfo *)fontGlyphs_%s;\n\n", fileNamePascal);
 #endif
     byteCount += sprintf(txtData + byteCount, "    return font;\n");
     byteCount += sprintf(txtData + byteCount, "}\n");