diff --git a/GPU3D.cpp b/GPU3D.cpp index d7438199..3c21cfa7 100644 --- a/GPU3D.cpp +++ b/GPU3D.cpp @@ -751,6 +751,9 @@ void SubmitPolygon() poly->NumVertices = 0; poly->Attr = CurPolygonAttr; + poly->TexParam = TexParam; + poly->TexPalette = TexPalette; + poly->FacingView = facingview; if (LastStripPolygon && clipstart > 0) diff --git a/GPU3D.h b/GPU3D.h index 939e3e9d..6f9d7d16 100644 --- a/GPU3D.h +++ b/GPU3D.h @@ -46,6 +46,8 @@ typedef struct u32 NumVertices; u32 Attr; + u32 TexParam; + u32 TexPalette; bool FacingView;