summaryrefslogtreecommitdiff
path: root/NW4RTools/Models/OpenGL/GLModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'NW4RTools/Models/OpenGL/GLModel.cs')
-rw-r--r--NW4RTools/Models/OpenGL/GLModel.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/NW4RTools/Models/OpenGL/GLModel.cs b/NW4RTools/Models/OpenGL/GLModel.cs
index 8ca3f31..072ea00 100644
--- a/NW4RTools/Models/OpenGL/GLModel.cs
+++ b/NW4RTools/Models/OpenGL/GLModel.cs
@@ -257,7 +257,7 @@ namespace NW4RTools.Models.OpenGL {
break;
if ((cmd & (int)GXCommand.DrawPrimitiveMask) != 0) {
- PrimitiveType prim = (PrimitiveType)((cmd >> 3) & 7);
+ PrimitiveType prim = (PrimitiveType)((cmd >> (byte)GXCommand.PrimitiveShiftAmount) & 7);
int vtxCount = dl.ReadUInt16();
if ((cmd & 7) != 0)