Implemented .elf and .dol support in gamelist

Fixed a TON of structuring, formatting.

removed README.txt files from themes at MaJoR's request

Added platform icon for ELFs/DOLs
This commit is contained in:
Anthony Serna
2015-08-25 22:13:55 -07:00
parent d96be9250c
commit faedf1bc5c
18 changed files with 67 additions and 23 deletions

View File

@ -75,7 +75,13 @@ static std::string BuildGameName(const GameListItem& game)
if (game.GetRevision() != 0)
return name + " (" + game.GetUniqueID() + ", Revision " + std::to_string((long long)game.GetRevision()) + ")";
else
{
if (game.GetUniqueID().empty())
{
return game.GetName();
}
return name + " (" + game.GetUniqueID() + ")";
}
}
void NetPlayDialog::FillWithGameNames(wxListBox* game_lbox, const CGameListCtrl& game_list)