From 4670ca2807c8d04a418be9170ad4b25c30dbe77d Mon Sep 17 00:00:00 2001 From: dpethes Date: Fri, 24 Oct 2014 22:33:58 +0200 Subject: [PATCH] hob parser: fix texture coord range --- hob_parser/hob_parser.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hob_parser/hob_parser.pas b/hob_parser/hob_parser.pas index e496f55..fe5819e 100644 --- a/hob_parser/hob_parser.pas +++ b/hob_parser/hob_parser.pas @@ -12,7 +12,7 @@ type end; TTexCoord = record - u, v: integer; + u, v: smallint; end; THobFace = record