Fixed an FTPoint
diff --git a/include/FTVectoriser.h b/include/FTVectoriser.h
index 902066c..5e7da55 100644
--- a/include/FTVectoriser.h
+++ b/include/FTVectoriser.h
@@ -55,7 +55,7 @@ class FTGL_EXPORT FTContour
*/
void AddPoint( const FTGL_DOUBLE x, const FTGL_DOUBLE y)
{
- ftPoint point( x, y, 0.0f);
+ FTPoint point( x, y, 0.0f);
// Eliminate duplicate points.
if( pointList.empty() || ( pointList[pointList.size() - 1] != point && pointList[0] != point))