MemoryCardListPanel: Minor visual bugfix.

If you inserted a PSX memory card into a slot, then swapped that with a
PS2 one, the memory card manager still displayed that card as a PSX one
with "MBit" instead of "MiB" as the size unit. Fixed.
This commit is contained in:
Admiral H. Curtiss 2015-05-25 05:15:44 +02:00
parent f32f42678c
commit 72dcb9b94c
1 changed files with 1 additions and 0 deletions

View File

@ -54,6 +54,7 @@ bool EnumerateMemoryCard( McdSlotItem& dest, const wxFileName& filename, const w
{ {
dest.IsFormatted = false; dest.IsFormatted = false;
dest.IsPresent = false; dest.IsPresent = false;
dest.IsPSX = false;
dest.Type = MemoryCardType::MemoryCard_None; dest.Type = MemoryCardType::MemoryCard_None;
const wxString fullpath( filename.GetFullPath() ); const wxString fullpath( filename.GetFullPath() );