Procházet zdrojové kódy

Fix a reference to static linked freetype function.

mingodad před 9 roky
rodič
revize
7a4a8a7bc1
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      SquiLu-ext/sq_freetype.cpp

+ 1 - 1
SquiLu-ext/sq_freetype.cpp

@@ -207,7 +207,7 @@ static SQRESULT sq_freetype_face_releasehook(SQUserPointer p, SQInteger /*size*/
 	FT_Face self = ((FT_Face)p);
 	if(self)
     {
-        FT_Done_Face(self);
+        dlFT_Done_Face(self);
     }
 	return 1;
 }