From 228fb78696f08f330212c57710e6c58c6bab73b6 Mon Sep 17 00:00:00 2001 From: riccardom Date: Wed, 4 Feb 2009 19:39:11 +0000 Subject: [PATCH] Declare variables in the same order they are initialized to fix a gcc warning. --- desmume/src/gfx3d.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desmume/src/gfx3d.h b/desmume/src/gfx3d.h index 5a17b8636..04f596471 100644 --- a/desmume/src/gfx3d.h +++ b/desmume/src/gfx3d.h @@ -144,8 +144,8 @@ struct GFX3D int x, y, width, height; } viewport; - u32 clearColor; float clearDepth; + u32 clearColor; float fogColor[4]; float fogOffset;