mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-16 12:58:33 +02:00
A small clean up.
Just doing it while i remember :) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3289 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -47,7 +47,6 @@ GameListItem::GameListItem(const std::string& _rFileName)
|
||||
, m_pImage(NULL)
|
||||
, m_ImageSize(0)
|
||||
, m_IsWii(false)
|
||||
, m_Platform(false)
|
||||
{
|
||||
|
||||
if (LoadFromCache())
|
||||
@ -61,7 +60,6 @@ GameListItem::GameListItem(const std::string& _rFileName)
|
||||
if (pVolume != NULL)
|
||||
{
|
||||
m_IsWii = DiscIO::IsVolumeWiiDisc(pVolume);
|
||||
m_Platform = DiscIO::IsVolumeWiiDisc(pVolume);
|
||||
|
||||
m_Company = "N/A";
|
||||
for (int i = 0; i < 6; i++)
|
||||
@ -172,7 +170,6 @@ void GameListItem::DoState(PointerWrap &p)
|
||||
p.Do(m_BlobCompressed);
|
||||
p.DoBuffer(&m_pImage, m_ImageSize);
|
||||
p.Do(m_IsWii);
|
||||
p.Do(m_Platform);
|
||||
}
|
||||
|
||||
std::string GameListItem::CreateCacheFilename()
|
||||
|
Reference in New Issue
Block a user