Changed MessageBox to wxMessageBox

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@679 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-09-25 05:50:58 +00:00
parent 7d7b1b57ed
commit ef4bac25c7
1 changed files with 2 additions and 3 deletions

View File

@ -203,12 +203,11 @@ void CMemcardManager::CopyDeleteClick(wxCommandEvent& event)
case ID_FIXCHECKSUM:
if(m_MemcardList[0]->GetItemCount() > 0)
{
// ---------------------------------------------------------------------------------------
// Fix checksums and save the changes
memoryCard[0]->FixChecksums();
memoryCard[0]->Save();
MessageBox(0, "The checksum was successfully fixed", "Message", 0);
// ---------------------------------------------------------------------------------------
wxMessageBox(wxT("The checksum was successfully fixed"),
wxT("Message"), wxOK);
}
break;
case ID_DELETERIGHT: