mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
DolphinWX: Fix encoding errors in UpdateTitle
An implicit conversion from std::string to wxString was to blame, as usual. Fixes issue 10341.
This commit is contained in:
@ -14,6 +14,7 @@
|
||||
#include <wx/frame.h>
|
||||
#include <wx/image.h>
|
||||
#include <wx/panel.h>
|
||||
#include <wx/string.h>
|
||||
#include <wx/timer.h>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
@ -254,7 +255,7 @@ private:
|
||||
bool TriggerSTMPowerEvent();
|
||||
void OnStopped();
|
||||
void OnRenderWindowSizeRequest(int width, int height);
|
||||
void UpdateTitle(const std::string& str);
|
||||
void UpdateTitle(const wxString& str);
|
||||
static void ConnectWiimote(int wm_idx, bool connect);
|
||||
|
||||
// Event functions
|
||||
|
Reference in New Issue
Block a user