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() {
|
void lock() {
|
||||||
lockCount++;
|
lockCount++;
|
||||||
}
|
}
|
||||||
int lockCount;
|
|
||||||
u32 addr;
|
u32 addr;
|
||||||
s8* raw_copy; //for memcmp
|
s8* raw_copy; //for memcmp
|
||||||
u32 raw_len;
|
u32 raw_len;
|
||||||
u32 decode_len;
|
u32 decode_len;
|
||||||
s16* decoded; //s16 decoded samples
|
s16* decoded; //s16 decoded samples
|
||||||
ADPCMCacheItem *next, *prev; //double linked list
|
ADPCMCacheItem *next, *prev; //double linked list
|
||||||
|
int lockCount;
|
||||||
};
|
};
|
||||||
|
|
||||||
//notes on the cache:
|
//notes on the cache:
|
||||||
|
|
Loading…
Reference in New Issue