diff options
Diffstat (limited to 'src/heretic/r_draw.c')
-rw-r--r-- | src/heretic/r_draw.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/heretic/r_draw.c b/src/heretic/r_draw.c index 468645f6..23726b9c 100644 --- a/src/heretic/r_draw.c +++ b/src/heretic/r_draw.c @@ -39,7 +39,6 @@ int viewwidth, scaledviewwidth, viewheight, viewwindowx, viewwindowy; byte *ylookup[MAXHEIGHT]; int columnofs[MAXWIDTH]; byte translations[3][256]; // color tables for different players -byte *tinttable; // used for translucent sprites /* ================== @@ -241,8 +240,7 @@ void R_InitTranslationTables(void) { int i; - // Load tint table - tinttable = W_CacheLumpName("TINTTAB", PU_STATIC); + V_LoadTintTable(); // Allocate translation tables translationtables = Z_Malloc(256 * 3 + 255, PU_STATIC, 0); |