From 7497e3f1a6f0b42a1874ac31e874ba2e09fe55fe Mon Sep 17 00:00:00 2001 From: Ian Curtis Date: Tue, 29 May 2018 14:54:23 +0000 Subject: [PATCH] forgot parentheses --- Src/Graphics/New3D/PolyHeader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/Graphics/New3D/PolyHeader.cpp b/Src/Graphics/New3D/PolyHeader.cpp index 786dcba..a092b70 100644 --- a/Src/Graphics/New3D/PolyHeader.cpp +++ b/Src/Graphics/New3D/PolyHeader.cpp @@ -392,7 +392,7 @@ UINT64 PolyHeader::Hash() hash |= (UINT64)(header[3] & 0xFF); // bits 0-7 tex width / height / uv smooth hash |= (UINT64)(((header[4] & 0x1F) << 1) | ((header[5] >> 7) & 1)) << 8; // bits 8-13 x offset - hash |= (UINT64)header[5] & 0x1F << 14; // bits 14-18 y offset + hash |= (UINT64)(header[5] & 0x1F) << 14; // bits 14-18 y offset hash |= (UINT64)Page() << 19; // bits 19 page hash |= (UINT64)DoubleSided() << 20; // bits 20 double sided hash |= (UINT64)AlphaTest() << 21; // bits 21 contour processing