diff --git a/Source/Core/DolphinWX/NetWindow.cpp b/Source/Core/DolphinWX/NetWindow.cpp index 663af91b2e..2c5ba541d7 100644 --- a/Source/Core/DolphinWX/NetWindow.cpp +++ b/Source/Core/DolphinWX/NetWindow.cpp @@ -65,9 +65,7 @@ static std::string BuildGameName(const GameListItem& game) // Lang needs to be consistent auto const lang = 0; - std::string name(game.GetBannerName(lang)); - if (name.empty()) - name = game.GetVolumeName(lang); + std::string name(game.GetName(lang)); if (game.GetRevision() != 0) return name + " (" + game.GetUniqueID() + ", Revision " + std::to_string((long long)game.GetRevision()) + ")";