From 4b9ee5ee39aec908b4be0fd4c8398eaa5d066bc3 Mon Sep 17 00:00:00 2001 From: Steven Vascellaro Date: Tue, 7 Oct 2014 19:05:38 -0400 Subject: [PATCH] Updated Netplay to use GetName() --- Source/Core/DolphinWX/NetWindow.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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()) + ")";