mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-09 01:28:57 +00: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:
parent
d96be9250c
commit
faedf1bc5c
18 changed files with 67 additions and 23 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue