Commit 720c3c5e3053b56050fb4636362184fb6a890e73

henry 2002-11-27T07:34:47

Fixed an FTPoint

1
2
3
4
5
6
7
8
9
10
11
12
13
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))