Build fix

This commit is contained in:
Robert Osfield
2008-12-22 18:30:52 +00:00
parent 0d5194bfd4
commit 21b633e73b
2 changed files with 6 additions and 6 deletions

View File

@@ -127,9 +127,9 @@ struct MDLHeader
int vertex_base;
int offset_base;
u_char const_direction_light_dot;
u_char root_lod;
u_char unused_byte[2];
unsigned char const_direction_light_dot;
unsigned char root_lod;
unsigned char unused_byte[2];
int zero_frame_cache_offset;

View File

@@ -52,9 +52,9 @@ struct VVDFixupEntry
struct VVDBoneWeight
{
float weight[MAX_BONES_PER_VERTEX];
char bone[MAX_BONES_PER_VERTEX];
u_char num_bones;
float weight[MAX_BONES_PER_VERTEX];
char bone[MAX_BONES_PER_VERTEX];
unsigned char num_bones;
};