Memcard Memcard Manager:

- Cosmetic fix to some messages. Don't start the slot numbering with 0 but with 1.


git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4352 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2011-02-24 06:24:16 +00:00
parent c619e81efd
commit ba4bc4529d
1 changed files with 3 additions and 3 deletions

View File

@ -368,7 +368,7 @@ public:
pxE( "!Notice:Mcd:Overwrite",
L"This will copy the entire contents of the memory card in slot %u to the memory card in slot %u. "
L"All data on the memory card in slot %u will be lost. Are you sure?" ),
src.Slot, dest.Slot, dest.Slot
src.Slot+1, dest.Slot+1, dest.Slot+1
);
result = Msgbox::YesNo( content, _("Overwrite memory card?") );
@ -383,7 +383,7 @@ public:
wxString heading;
heading.Printf( pxE( "!Notice:Mcd:Copy Failed",
L"Error! Could not copy the memory card into slot %u. The destination file is in use." ),
dest.Slot
dest.Slot+1
);
wxString content;
@ -596,7 +596,7 @@ void Panels::MemoryCardListPanel_Simple::OnCreateCard(wxCommandEvent& evt)
pxE( "!Notice:Mcd:Delete",
L"You are about to delete the formatted memory card in slot %u. "
L"All data on this card will be lost! Are you absolutely and quite positively sure?"
), slot
), slot+1
);
result = Msgbox::YesNo( content, _("Delete memory card?") );