mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-14 16:29:21 +01:00
linux compile fix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1522 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
522752c77d
commit
3c2a41c290
@ -199,7 +199,7 @@ void wxCheatsWindow::OnEvent_ButtonUpdateLog_Press(wxCommandEvent& WXUNUSED (eve
|
|||||||
{
|
{
|
||||||
m_TextCtrl_Log->Clear();
|
m_TextCtrl_Log->Clear();
|
||||||
const std::vector<std::string> &arLog = ActionReplay_GetSelfLog();
|
const std::vector<std::string> &arLog = ActionReplay_GetSelfLog();
|
||||||
for (int i = 0; i < arLog.size(); i++)
|
for (u32 i = 0; i < arLog.size(); i++)
|
||||||
{
|
{
|
||||||
m_TextCtrl_Log->AppendText(wxString::FromAscii(arLog[i].c_str()));
|
m_TextCtrl_Log->AppendText(wxString::FromAscii(arLog[i].c_str()));
|
||||||
}
|
}
|
||||||
|
@ -624,7 +624,7 @@ void CMemcardManager::CopyDeleteClick(wxCommandEvent& event)
|
|||||||
if (temp.length() > 0)
|
if (temp.length() > 0)
|
||||||
{
|
{
|
||||||
if (!CopyDeleteSwitch(memoryCard[slot]->ExportGci(index, fileName), -1))
|
if (!CopyDeleteSwitch(memoryCard[slot]->ExportGci(index, fileName), -1))
|
||||||
File::Delete(temp.c_str());
|
File::Delete(temp.ToAscii());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user