From 1e464d1a2535981b19a41f68ce68c82fc5e72566 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Fri, 22 Aug 2014 17:28:02 -0400 Subject: [PATCH] Frame: Actually call UpdateTitle This was obviously what I meant to do, but due to a typo, called SetTitle instead, causing the main game list title to be set instead. --- Source/Core/DolphinWX/Frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/Frame.cpp b/Source/Core/DolphinWX/Frame.cpp index 126cb3ea74..190c0947cd 100644 --- a/Source/Core/DolphinWX/Frame.cpp +++ b/Source/Core/DolphinWX/Frame.cpp @@ -657,7 +657,7 @@ void CFrame::OnHostMessage(wxCommandEvent& event) break; case IDM_UPDATETITLE: - SetTitle(event.GetString()); + UpdateTitle(WxStrToStr(event.GetString())); break; case IDM_WINDOWSIZEREQUEST: