Removed set but not used variable 'satLevels' from tr_font.c.

This commit is contained in:
Zack Middleton 2012-03-29 05:31:18 +00:00
parent 4b7a623cc0
commit 5e9c7f5b37
1 changed files with 1 additions and 2 deletions

View File

@ -338,7 +338,7 @@ void RE_RegisterFont(const char *fontName, int pointSize, fontInfo_t *font) {
#ifdef BUILD_FREETYPE
FT_Face face;
int j, k, xOut, yOut, lastStart, imageNumber;
int scaledSize, newSize, maxHeight, left, satLevels;
int scaledSize, newSize, maxHeight, left;
unsigned char *out, *imageBuff;
glyphInfo_t *glyph;
image_t *image;
@ -476,7 +476,6 @@ void RE_RegisterFont(const char *fontName, int pointSize, fontInfo_t *font) {
imageBuff = ri.Malloc(newSize);
left = 0;
max = 0;
satLevels = 255;
for ( k = 0; k < (scaledSize) ; k++ ) {
if (max < out[k]) {
max = out[k];