From b7db01e3fcf25cfbf2257e409e4bf86fc22babda Mon Sep 17 00:00:00 2001 From: Spoike Date: Sun, 5 May 2013 01:18:38 +0000 Subject: [PATCH] Probably more correct. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4336 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/common/com_mesh.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/common/com_mesh.c b/engine/common/com_mesh.c index 42b7cf0ba..0fd470426 100644 --- a/engine/common/com_mesh.c +++ b/engine/common/com_mesh.c @@ -3952,7 +3952,7 @@ typedef struct { int ident; int version; - char name[MAX_QPATH]; + char name[64]; int flags; //Does anyone know what these are? @@ -3980,7 +3980,7 @@ typedef struct md3Frame_s { typedef struct { int ident; // - char name[MAX_QPATH]; // polyset name + char name[64]; // polyset name int flags; int numFrames; // all surfaces in a model should have the same @@ -4016,7 +4016,7 @@ typedef struct { } md3St_t; typedef struct { - char name[MAX_QPATH]; + char name[64]; int shaderIndex; } md3Shader_t; //End of Tenebrae 'assistance'