From 4e4181790691574d5982f6e03189559f790a7b48 Mon Sep 17 00:00:00 2001 From: riccardom Date: Tue, 19 May 2009 20:00:23 +0000 Subject: [PATCH] Declare variables in the same order they are inited to shut up gcc warnings. --- desmume/src/NDSSystem.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/desmume/src/NDSSystem.h b/desmume/src/NDSSystem.h index 038134840..a6b3904ba 100644 --- a/desmume/src/NDSSystem.h +++ b/desmume/src/NDSSystem.h @@ -378,11 +378,11 @@ extern struct TCommonSettings { int wifiBridgeAdapterNum; - //this is a temporary hack until we straighten out the flushing logic and/or gxfifo - int gfx3d_flushMode; - SPUInterpolationMode spuInterpolationMode; bool spuAdpcmCache; + + //this is a temporary hack until we straighten out the flushing logic and/or gxfifo + int gfx3d_flushMode; } CommonSettings; extern char ROMserial[20];