mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Remove CLUT matching case that shouldn't be there yet.
This commit is contained in:
parent
3e7f6b57aa
commit
cf959a8467
1 changed files with 1 additions and 2 deletions
|
@ -952,8 +952,7 @@ bool TextureCacheCommon::MatchFramebuffer(
|
|||
(fb_format == GE_FORMAT_DEPTH16 && entry.format == GE_TFMT_CLUT16) ||
|
||||
(fb_format == GE_FORMAT_DEPTH16 && entry.format == GE_TFMT_5650) ||
|
||||
(fb_format == GE_FORMAT_8888 && entry.format == GE_TFMT_CLUT32) ||
|
||||
(fb_format != GE_FORMAT_8888 && entry.format == GE_TFMT_CLUT16) ||
|
||||
(fb_format == GE_FORMAT_8888 && entry.format == GE_TFMT_CLUT8); // Mixed byte size, format, reinterpret in depal!
|
||||
(fb_format != GE_FORMAT_8888 && entry.format == GE_TFMT_CLUT16);
|
||||
|
||||
const int texBitsPerPixel = std::max(1U, (u32)textureBitsPerPixel[entry.format]);
|
||||
const int byteOffset = texaddr - addr;
|
||||
|
|
Loading…
Add table
Reference in a new issue