Commit f1940e79355e973807ceabc62b5b55ca31d99323

henry 2001-08-06T05:46:16

Changed types for IRIX

diff --git a/include/FTGLTextureFont.h b/include/FTGLTextureFont.h
index fd06af6..a623cad 100755
--- a/include/FTGLTextureFont.h
+++ b/include/FTGLTextureFont.h
@@ -1,5 +1,5 @@
-#ifndef		__FTGLTextureFont
-#define		__FTGLTextureFont
+#ifndef		__FTGLTextureFont__
+#define		__FTGLTextureFont__
 #include	"FTFont.h"
 
 #include "FTGL.h"
@@ -22,10 +22,12 @@ class	FTGLTextureFont : public FTFont
 		// attributes
 		FTTextureGlyph* tempGlyph;
 		
-		long maxTextSize;
+//		long maxTextSize;
+		int maxTextSize; // For IRIX
 		int textureSize;
 		
-		unsigned long glTextureID;
+//		unsigned long glTextureID;
+		unsigned int glTextureID; // For IRIX
 		unsigned char* textMem;
 		
 		int glyphHeight;
@@ -42,4 +44,4 @@ class	FTGLTextureFont : public FTFont
 		
 		
 };
-#endif
+#endif    //    __FTGLTextureFont__