mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
small code fixes
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1106 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -434,8 +434,8 @@ void CFrame::OnPlay(wxCommandEvent& WXUNUSED (event))
|
||||
void CFrame::OnStop(wxCommandEvent& WXUNUSED (event))
|
||||
{
|
||||
// Ask for confirmation in case the user accidently clicked Stop
|
||||
int answer = wxMessageBox("Are you sure you want to stop the current emulation?",
|
||||
"Confirm", wxYES_NO);
|
||||
int answer = wxMessageBox(wxT("Are you sure you want to stop the current emulation?"),
|
||||
wxT("Confirm"), wxYES_NO);
|
||||
|
||||
if (answer == wxYES && Core::GetState() != Core::CORE_UNINITIALIZED)
|
||||
{
|
||||
|
@ -299,7 +299,7 @@ void CMemcardManager::CopyDeleteClick(wxCommandEvent& event)
|
||||
freeblocks = BE16(memoryCard[slot]->bat.FreeBlocks);
|
||||
{
|
||||
wxString Foobar;
|
||||
Foobar.Printf("Only %d blocks available", freeblocks);
|
||||
Foobar.Printf(wxT("Only %d blocks available"), freeblocks);
|
||||
wxMessageBox(Foobar,wxT("Failure"),wxOK);
|
||||
}
|
||||
break;
|
||||
|
Reference in New Issue
Block a user