isClutSharedForMipmaps: This was presumably inverted by accident?

This commit is contained in:
Henrik Rydgård 2013-12-09 12:46:13 +01:00
parent 68b08ffb9f
commit e14f17b430

View File

@ -307,7 +307,7 @@ struct GPUgstate
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 isTextureSwizzled() const { return texmode & 1; }
bool isClutSharedForMipmaps() const { return (texmode & 0x100) != 0; }
bool isClutSharedForMipmaps() const { return (texmode & 0x100) == 0; }
// Lighting
bool isLightingEnabled() const { return lightingEnable & 1; }