Remove logging

This commit is contained in:
Cacodemon345
2023-12-31 16:44:54 +06:00
parent 6366e1c58c
commit b1cf6c8657

View File

@@ -4905,7 +4905,6 @@ static uint16_t texture_texel_fetch(mystique_t *mystique, int *tex_r, int *tex_g
*tex_g = ((src >> 4) & 0xf) << 4;
*tex_b = (src & 0xf) << 4;
*tex_a = ((src >> 12) & 0xf) << 4;
pclog("TEXFORMAT_TW12\n");
if (mystique->dwgreg.texctl & TEXCTL_AZEROEXTEND) {
*atransp = (((src >> 12) & 0xf) & mystique->dwgreg.ta_mask) == mystique->dwgreg.ta_key;
} else {