mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-11 10:39:59 +00:00
Buildfix.
This commit is contained in:
parent
03ec9a2e08
commit
95558cdc69
3 changed files with 4 additions and 3 deletions
|
@ -57,10 +57,11 @@ void Explore(const char *path)
|
|||
|
||||
std::string WxStrToStr(const wxString& str)
|
||||
{
|
||||
return str.ToUTF8();
|
||||
return str.ToUTF8().data();
|
||||
}
|
||||
|
||||
wxString StrToWxStr(const std::string& str)
|
||||
{
|
||||
//return wxString::FromUTF8Unchecked(str.c_str());
|
||||
return wxString::FromUTF8(str.c_str());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue