mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 22:05:38 +00:00
Use the correct texture enable bit
This commit is contained in:
parent
3c8352f4ca
commit
3bc2794b0a
|
@ -232,7 +232,7 @@ int PolyHeader::TexFormat()
|
|||
|
||||
bool PolyHeader::TexEnabled()
|
||||
{
|
||||
return (header[6] & 0x04000000) > 0;
|
||||
return (header[6] & 0x400) > 0;
|
||||
}
|
||||
|
||||
bool PolyHeader::LightEnabled()
|
||||
|
|
Loading…
Reference in a new issue