Browse Source

Fix a reference to static linked freetype function.

mingodad 9 years ago
parent
commit
7a4a8a7bc1
1 changed files with 1 additions and 1 deletions
  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);
 	FT_Face self = ((FT_Face)p);
 	if(self)
 	if(self)
     {
     {
-        FT_Done_Face(self);
+        dlFT_Done_Face(self);
     }
     }
 	return 1;
 	return 1;
 }
 }