Declare variables in the same order they are inited to shut up gcc warnings.

This commit is contained in:
riccardom 2009-05-19 20:00:23 +00:00
parent 29cc1443ac
commit 4e41817906
1 changed files with 3 additions and 3 deletions

View File

@ -378,11 +378,11 @@ extern struct TCommonSettings {
int wifiBridgeAdapterNum; int wifiBridgeAdapterNum;
//this is a temporary hack until we straighten out the flushing logic and/or gxfifo
int gfx3d_flushMode;
SPUInterpolationMode spuInterpolationMode; SPUInterpolationMode spuInterpolationMode;
bool spuAdpcmCache; bool spuAdpcmCache;
//this is a temporary hack until we straighten out the flushing logic and/or gxfifo
int gfx3d_flushMode;
} CommonSettings; } CommonSettings;
extern char ROMserial[20]; extern char ROMserial[20];