mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
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:
@ -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)
|
||||
|
Reference in New Issue
Block a user