mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2025-02-17 01:45:41 +00:00
Daytona seems to use 3 bits for texture transparency, will figure it out later but for now this works
This commit is contained in:
parent
30ca1792bb
commit
23a5839d46
|
@ -267,7 +267,7 @@ bool PolyHeader::PolyAlpha()
|
|||
|
||||
bool PolyHeader::TextureAlpha()
|
||||
{
|
||||
return (header[6] & 0x3) > 0;
|
||||
return (header[6] & 0x7) > 0;
|
||||
}
|
||||
|
||||
bool PolyHeader::StencilPoly()
|
||||
|
|
Loading…
Reference in a new issue