mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
f32f42678c
commit
72dcb9b94c
|
@ -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() );
|
||||||
|
|
Loading…
Reference in New Issue