From 72dcb9b94c1e24d53ab6163f9b22b8c274ddae6e Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Mon, 25 May 2015 05:15:44 +0200 Subject: [PATCH] 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. --- pcsx2/gui/Panels/MemoryCardListPanel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pcsx2/gui/Panels/MemoryCardListPanel.cpp b/pcsx2/gui/Panels/MemoryCardListPanel.cpp index ca60092777..db0ed221cd 100644 --- a/pcsx2/gui/Panels/MemoryCardListPanel.cpp +++ b/pcsx2/gui/Panels/MemoryCardListPanel.cpp @@ -54,6 +54,7 @@ bool EnumerateMemoryCard( McdSlotItem& dest, const wxFileName& filename, const w { dest.IsFormatted = false; dest.IsPresent = false; + dest.IsPSX = false; dest.Type = MemoryCardType::MemoryCard_None; const wxString fullpath( filename.GetFullPath() );