Reorder fields in the same order they are initialized to shut up gcc warnings.

This commit is contained in:
riccardom 2009-09-01 19:04:39 +00:00
parent 5f4d43f738
commit 0c671d2a4b
1 changed files with 1 additions and 1 deletions

View File

@ -77,8 +77,8 @@ public:
class EMUFILE_MEMORY : public EMUFILE {
protected:
std::vector<u8> *vec;
s32 pos, len;
bool ownvec;
s32 pos, len;
void reserve(u32 amt) {
if(vec->size() < amt)