summary refs log tree commit diff
path: root/src/TGALoader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/TGALoader.h')
-rw-r--r--src/TGALoader.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/TGALoader.h b/src/TGALoader.h
index 83f4476..ab26f88 100644
--- a/src/TGALoader.h
+++ b/src/TGALoader.h
@@ -1,16 +1,15 @@
-#ifdef OS9 
+#ifdef OS9
 #pragma once
 #endif
 
 #ifndef	_TGA_LOADER_H_
 #define	_TGA_LOADER_H_
 
-
 /**> HEADER FILES <**/
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
-#ifdef OS9 
+#ifdef OS9
 #include "gl.h"
 #else
 #include <GL/gl.h>
@@ -27,10 +26,7 @@ typedef struct TGAImageRec
 	GLuint	sizeY;
 }	TGAImageRec;
 
-
-
 /**> FUNCTION PROTOTYPES <**/
 TGAImageRec*	LoadTGA( char *filename );
 
-
 #endif