mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
-fixed a small coverflow cover loading bug
This commit is contained in:
parent
0129ca9053
commit
6ec1122f84
@ -2838,7 +2838,7 @@ int CCoverFlow::_coverLoader(CCoverFlow *cf)
|
|||||||
nextItem = cf->m_covers[cf->m_range / 2].index;
|
nextItem = cf->m_covers[cf->m_range / 2].index;
|
||||||
int diff = nextItem - firstItem;
|
int diff = nextItem - firstItem;
|
||||||
if(diff < 0) diff *= (-1);
|
if(diff < 0) diff *= (-1);
|
||||||
for(u32 j = bufferSize - diff; j < bufferSize && cf->m_loadingCovers && update; ++j)
|
for(u32 j = bufferSize - diff; j <= bufferSize && cf->m_loadingCovers && update; ++j)
|
||||||
{
|
{
|
||||||
i = loopNum((j & 1) ? firstItem - (j + 1) / 2 : firstItem + j / 2, cf->m_items.size());
|
i = loopNum((j & 1) ? firstItem - (j + 1) / 2 : firstItem + j / 2, cf->m_items.size());
|
||||||
TexHandle.Cleanup(cf->m_items[i].texture);
|
TexHandle.Cleanup(cf->m_items[i].texture);
|
||||||
|
Loading…
Reference in New Issue
Block a user