mirror of
https://github.com/libretro/ppsspp.git
synced 2025-01-22 17:05:22 +00:00
isClutSharedForMipmaps: This was presumably inverted by accident?
This commit is contained in:
parent
68b08ffb9f
commit
e14f17b430
@ -307,7 +307,7 @@ struct GPUgstate
|
|||||||
int transformClutIndex(int index) const { return ((index >> getClutIndexShift()) & getClutIndexMask()) | getClutIndexStartPos(); }
|
int transformClutIndex(int index) const { return ((index >> getClutIndexShift()) & getClutIndexMask()) | getClutIndexStartPos(); }
|
||||||
bool isClutIndexSimple() const { return (clutformat & ~3) == 0xC500FF00; } // Meaning, no special mask, shift, or start pos.
|
bool isClutIndexSimple() const { return (clutformat & ~3) == 0xC500FF00; } // Meaning, no special mask, shift, or start pos.
|
||||||
bool isTextureSwizzled() const { return texmode & 1; }
|
bool isTextureSwizzled() const { return texmode & 1; }
|
||||||
bool isClutSharedForMipmaps() const { return (texmode & 0x100) != 0; }
|
bool isClutSharedForMipmaps() const { return (texmode & 0x100) == 0; }
|
||||||
|
|
||||||
// Lighting
|
// Lighting
|
||||||
bool isLightingEnabled() const { return lightingEnable & 1; }
|
bool isLightingEnabled() const { return lightingEnable & 1; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user