- Manual cache cleanup in the menu to help a bit with issue 693. This is unfortunately not enough, we are dealing with ram fragmentation problems here :(

This commit is contained in:
wagic.the.homebrew
2011-07-10 13:51:39 +00:00
parent bf4e0d8908
commit 3148a25f3a
5 changed files with 16 additions and 1 deletions

View File

@@ -110,6 +110,11 @@ JFileSystem::JFileSystem()
JFileSystem::~JFileSystem()
{
clearZipCache();
}
void JFileSystem::clearZipCache()
{
DetachZipFile();
@@ -120,7 +125,6 @@ JFileSystem::~JFileSystem()
mZipCache.clear();
}
bool JFileSystem::AttachZipFile(const string &zipfile, char *password /* = NULL */)
{
if (mZipAvailable && mZipFile != NULL)