remove raster rev junk

This commit is contained in:
Jaklyy 2024-09-11 09:54:19 -04:00
parent 6b2b81bd89
commit 9da9c9ae7e
1 changed files with 2 additions and 2 deletions

View File

@ -287,7 +287,7 @@ void SoftRenderer::TextureLookup(const GPU& gpu, u32 texparam, u32 texpal, s16 s
{
u16 color = ReadVRAM_TexPal<u16>(texpal + paloffset, gpu);
*alpha = 31;
if (!((palinfo >> 14) & 0x1) || gpu.GPU3D.RenderRasterRev)
if (!((palinfo >> 14) & 0x1))
ColorConv<true>(color, tr, tg, tb);
else
ColorConv<false>(color, tr, tg, tb);
@ -298,7 +298,7 @@ void SoftRenderer::TextureLookup(const GPU& gpu, u32 texparam, u32 texpal, s16 s
{
u16 color = ReadVRAM_TexPal<u16>(texpal + paloffset + 2, gpu);
*alpha = 31;
if (!((palinfo >> 14) & 0x1) || gpu.GPU3D.RenderRasterRev)
if (!((palinfo >> 14) & 0x1))
ColorConv<true>(color, tr, tg, tb);
else
ColorConv<false>(color, tr, tg, tb);