From 27907bd5780497d603f115738cfcd68b1da3d17f Mon Sep 17 00:00:00 2001 From: havoc Date: Tue, 10 Jan 2006 21:14:06 +0000 Subject: [PATCH] correct q2dheader_t and q3dheader_t to have the correct lump array sizes git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5894 d7cf8633-e32d-0410-b094-e92efae38249 --- model_brush.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/model_brush.h b/model_brush.h index bcb79f10..bf44b585 100644 --- a/model_brush.h +++ b/model_brush.h @@ -245,7 +245,7 @@ typedef struct q2dheader_s { int ident; int version; - lump_t lumps[HEADER_LUMPS]; + lump_t lumps[Q2HEADER_LUMPS]; } q2dheader_t; typedef struct q2dmodel_s @@ -419,7 +419,7 @@ typedef struct q3dheader_s { int ident; int version; - lump_t lumps[HEADER_LUMPS]; + lump_t lumps[Q3HEADER_LUMPS]; } q3dheader_t; typedef struct q3dtexture_s -- 2.39.2