From 31192e8372765082ad16fcb19d84448a8e952376 Mon Sep 17 00:00:00 2001 From: Jan Date: Tue, 24 Dec 2019 17:20:34 +0100 Subject: [PATCH] ZoneCode: Fix XSurface VertListCount not being unsigned even though it is used as it is --- src/ZoneCommon/Game/T6/T6_Assets.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ZoneCommon/Game/T6/T6_Assets.h b/src/ZoneCommon/Game/T6/T6_Assets.h index 3c1acfb2..bc521b47 100644 --- a/src/ZoneCommon/Game/T6/T6_Assets.h +++ b/src/ZoneCommon/Game/T6/T6_Assets.h @@ -2622,7 +2622,7 @@ namespace T6 struct __declspec(align(16)) XSurface { char tileMode; - char vertListCount; + unsigned char vertListCount; unsigned __int16 flags; unsigned __int16 vertCount; unsigned __int16 triCount;