Skip to content
Snippets Groups Projects
Commit 14cd274b authored by Monster Iestyn's avatar Monster Iestyn
Browse files

Change 0xF7 to 0xFF in R_GenerateTexture

parent cb1fbbf3
No related branches found
No related tags found
No related merge requests found
......@@ -263,7 +263,7 @@ static UINT8 *R_GenerateTexture(size_t texnum)
texturememory += blocksize;
block = Z_Malloc(blocksize+1, PU_STATIC, &texturecache[texnum]);
memset(block, 0xF7, blocksize+1); // Transparency hack
memset(block, 0xFF, blocksize+1); // Transparency hack
// columns lookup table
colofs = (UINT32 *)(void *)block;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment