restore wii sorting order by using the ascii string from the banner instead of the iso file
This commit is contained in:
parent
ca8af741b8
commit
d389f7139b
|
@ -36,7 +36,7 @@
|
|||
#include "ChunkFile.h"
|
||||
#include "../resources/no_banner.cpp"
|
||||
|
||||
#define CACHE_REVISION 0x10C
|
||||
#define CACHE_REVISION 0x10D
|
||||
|
||||
#define DVD_BANNER_WIDTH 96
|
||||
#define DVD_BANNER_HEIGHT 32
|
||||
|
@ -104,10 +104,10 @@ GameListItem::GameListItem(const std::string& _rFileName)
|
|||
if (pBannerLoader->IsValid())
|
||||
{
|
||||
m_wNames.clear();
|
||||
if (!pBannerLoader->GetName(m_wNames))
|
||||
pBannerLoader->GetName(m_wNames);
|
||||
pBannerLoader->GetName(m_Name);
|
||||
pBannerLoader->GetCompany(m_Company);
|
||||
if (!pBannerLoader->GetDescription(m_wDescription))
|
||||
pBannerLoader->GetDescription(m_wDescription);
|
||||
pBannerLoader->GetDescription(m_Description);
|
||||
|
||||
if (pBannerLoader->GetBanner(g_ImageTemp))
|
||||
|
|
Loading…
Reference in New Issue