Move variables in the same order they are inited.
This commit is contained in:
parent
3edf67ae85
commit
0ef9b64379
|
@ -129,13 +129,13 @@ public:
|
|||
void lock() {
|
||||
lockCount++;
|
||||
}
|
||||
int lockCount;
|
||||
u32 addr;
|
||||
s8* raw_copy; //for memcmp
|
||||
u32 raw_len;
|
||||
u32 decode_len;
|
||||
s16* decoded; //s16 decoded samples
|
||||
ADPCMCacheItem *next, *prev; //double linked list
|
||||
int lockCount;
|
||||
};
|
||||
|
||||
//notes on the cache:
|
||||
|
|
Loading…
Reference in New Issue