From 44051ee09f3985ea20e2850e200ea81231b324fd Mon Sep 17 00:00:00 2001 From: mtabachenko Date: Fri, 8 Nov 2013 15:32:22 +0000 Subject: [PATCH] - fix application crash introduced by [r4838]; --- desmume/src/gfx3d.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/desmume/src/gfx3d.h b/desmume/src/gfx3d.h index 1eea3b14c..d79450270 100644 --- a/desmume/src/gfx3d.h +++ b/desmume/src/gfx3d.h @@ -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;