FaceSize now sets the error value.
diff --git a/src/FTFont.cpp b/src/FTFont.cpp
index c06d883..d0fa34b 100755
--- a/src/FTFont.cpp
+++ b/src/FTFont.cpp
@@ -67,8 +67,9 @@ bool FTFont::Attach( const unsigned char *pBufferBytes, size_t bufferSizeInBytes
bool FTFont::FaceSize( const unsigned int size, const unsigned int res )
{
charSize = face.Size( size, res);
+ err = face.Error();
- if( face.Error())
+ if( err != 0)
{
return false;
}