mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-27 21:54:15 +01:00
-hopefully fixed the last memory leak on cover downloading
-added subfolder auto creation for plugin cache (issue 187)
This commit is contained in:
parent
c778748bd1
commit
022ea31127
@ -2591,6 +2591,8 @@ bool CCoverFlow::preCacheCover(const char *id, const u8 *png, bool full)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
TexHandle.Cleanup(tex);
|
TexHandle.Cleanup(tex);
|
||||||
|
if(zBuffer != NULL && m_compressCache)
|
||||||
|
MEM2_free(zBuffer);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2672,6 +2674,21 @@ bool CCoverFlow::_loadCoverTexPNG(u32 i, bool box, bool hq, bool blankBoxCover)
|
|||||||
file = fopen(fmt("%s/%s.wfc", m_cachePath.c_str(), gamePath), "wb");
|
file = fopen(fmt("%s/%s.wfc", m_cachePath.c_str(), gamePath), "wb");
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
if(strchr(coverDir, '/') != NULL)
|
||||||
|
{
|
||||||
|
char *tmp = (char*)MEM2_alloc(strlen(coverDir)+1);
|
||||||
|
strncpy(tmp, coverDir, strlen(coverDir));
|
||||||
|
char *help = tmp;
|
||||||
|
while(help != NULL && strchr(help, '/') != NULL)
|
||||||
|
{
|
||||||
|
char *pos = strchr(help, '/');
|
||||||
|
*pos = '\0';
|
||||||
|
fsop_MakeFolder(fmt("%s/%s", m_cachePath.c_str(), tmp));
|
||||||
|
*pos = '/';
|
||||||
|
help = pos+1;
|
||||||
|
}
|
||||||
|
MEM2_free(tmp);
|
||||||
|
}
|
||||||
fsop_MakeFolder(fmt("%s/%s", m_cachePath.c_str(), coverDir));
|
fsop_MakeFolder(fmt("%s/%s", m_cachePath.c_str(), coverDir));
|
||||||
file = fopen(fmt("%s/%s/%s.wfc", m_cachePath.c_str(), coverDir, gamePath), "wb");
|
file = fopen(fmt("%s/%s/%s.wfc", m_cachePath.c_str(), coverDir, gamePath), "wb");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user