Revert "engine: client: fixed blueish outline on sprays converted to WAD3"

This reverts commit a5f7314ec9.
This commit is contained in:
Alibek Omarov
2025-10-20 07:47:58 +05:00
parent f1fde32c29
commit cfb8e0882a

View File

@@ -151,11 +151,9 @@ qboolean CL_ConvertImageToWAD3( const char *filename )
}
}
// make last palette color black to avoid blueish texture filtering artifacts
quant->palette[255 * 3 + 0] = 0;
quant->palette[255 * 3 + 1] = 0;
quant->palette[255 * 3 + 2] = 0;
quant->palette[255 * 3 + 2] = 255;
memcpy( palette, quant->palette, SPRAY_PALETTE_BYTES );
indexed = quant->buffer;
}