mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 23:58:59 +00:00
some more fixes for the switch to unicode. Thanks sl1nk3.s
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3925 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
7b19632b4a
commit
6cbeeafdf1
10 changed files with 26 additions and 28 deletions
|
@ -461,7 +461,7 @@ void CFrame::DoOpen(bool Boot)
|
|||
{
|
||||
if (!fileChosen)
|
||||
return;
|
||||
BootManager::BootCore(std::string(path.ToAscii()));
|
||||
BootManager::BootCore(std::string(path.mb_str()));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -662,7 +662,7 @@ void CFrame::OnLoadStateFromFile(wxCommandEvent& WXUNUSED (event))
|
|||
this);
|
||||
|
||||
if(path)
|
||||
State_LoadAs((const char *)path.ToAscii());
|
||||
State_LoadAs((const char*)path.mb_str());
|
||||
}
|
||||
|
||||
void CFrame::OnSaveStateToFile(wxCommandEvent& WXUNUSED (event))
|
||||
|
@ -680,7 +680,7 @@ void CFrame::OnSaveStateToFile(wxCommandEvent& WXUNUSED (event))
|
|||
this);
|
||||
|
||||
if(path)
|
||||
State_SaveAs((const char *)path.ToAscii());
|
||||
State_SaveAs((const char*)path.mb_str());
|
||||
}
|
||||
|
||||
void CFrame::OnLoadLastState(wxCommandEvent& WXUNUSED (event))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue