- fix application crash introduced by [r4838];

This commit is contained in:
mtabachenko 2013-11-08 15:32:22 +00:00
parent 589960f91b
commit 44051ee09f
1 changed files with 3 additions and 3 deletions

View File

@ -522,13 +522,13 @@ struct POLYLIST {
struct VERT {
// Align to 16 for SSE instructions to work
union {
CACHE_ALIGN union {
float coord[4];
struct {
float x,y,z,w;
};
} DS_ALIGN(16);
union {
};
CACHE_ALIGN union {
float texcoord[2];
struct {
float u,v;