mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2025-10-03 21:01:14 +00:00
Fix problems with loading a packaged mod twice. Thx to Daxar for reporting, was in fact a ttvfs bug.
This commit is contained in:
parent
00b5f46154
commit
18034bcc18
5 changed files with 33 additions and 23 deletions
|
@ -21,7 +21,7 @@ File::~File()
|
|||
}
|
||||
|
||||
DiskFile::DiskFile(const char *name /* = NULL */)
|
||||
: File(name), _fh(NULL), _buf(NULL)
|
||||
: File(name), _fh(NULL)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -78,7 +78,6 @@ public:
|
|||
protected:
|
||||
|
||||
void *_fh; // FILE*
|
||||
void *_buf;
|
||||
};
|
||||
|
||||
class MemFile : public File
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue