summary refs log tree commit diff
path: root/src/TGALoader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/TGALoader.cpp')
-rw-r--r--src/TGALoader.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/TGALoader.cpp b/src/TGALoader.cpp
index 3090764..27fd5b9 100644
--- a/src/TGALoader.cpp
+++ b/src/TGALoader.cpp
@@ -11,7 +11,6 @@ TGAImageRec*	LoadTGA( char *filename )
 	GLuint			bytesPerPixel;								// Holds Number Of Bytes Per Pixel Used In The TGA File
 	GLuint			imageSize;									// Used To Store The Image Size When Setting Aside Ram
 	GLuint			temp;										// Temporary Variable
-	GLuint			type = GL_RGBA;								// Set The Default GL Mode To RBGA (32 BPP)
 	TGAImageRec		*texture;
 	FILE			*file;