From 7423abb1367682953aa374c7e6ed02dc4700f55c Mon Sep 17 00:00:00 2001 From: kd-11 Date: Mon, 2 Jan 2023 22:38:44 +0300 Subject: [PATCH] rsx: Remove incorrect hack --- rpcs3/Emu/RSX/RSXTexture.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/rpcs3/Emu/RSX/RSXTexture.cpp b/rpcs3/Emu/RSX/RSXTexture.cpp index 807d77b6f965..2ef7e4cfcebb 100644 --- a/rpcs3/Emu/RSX/RSXTexture.cpp +++ b/rpcs3/Emu/RSX/RSXTexture.cpp @@ -227,17 +227,6 @@ namespace rsx remap_ctl |= lo_word; break; } - case CELL_GCM_TEXTURE_B8: - { - // Low bit in remap control seems to affect whether the A component is forced to 1 - // Only seen in BLUS31604 - if (remap_override) - { - // Set remap lookup for A component to FORCE_ONE - remap_ctl = (remap_ctl & ~(3 << 8)) | (1 << 8); - } - break; - } default: break; }