mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
continue working on display gamecube game name and description.
now we can select Config -> General -> Game List Language to choose the language of PAL games for displaying git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1979 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
bb06dfb823
commit
189285f071
11 changed files with 175 additions and 43 deletions
|
@ -39,7 +39,7 @@
|
|||
|
||||
static u32 g_ImageTemp[DVD_BANNER_WIDTH * DVD_BANNER_HEIGHT];
|
||||
|
||||
GameListItem::GameListItem(const std::string& _rFileName)
|
||||
GameListItem::GameListItem(const std::string& _rFileName, bool bUpdateCache)
|
||||
: m_FileName(_rFileName)
|
||||
, m_FileSize(0)
|
||||
, m_Valid(false)
|
||||
|
@ -48,7 +48,7 @@ GameListItem::GameListItem(const std::string& _rFileName)
|
|||
, m_ImageSize(0)
|
||||
{
|
||||
|
||||
if (LoadFromCache())
|
||||
if ((bUpdateCache == false) && LoadFromCache())
|
||||
{
|
||||
m_Valid = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue