GUI: Initialize all class members

CID 146977 (#1 of 1): Uninitialized scalar field (UNINIT_CTOR)6. uninit_member: Non-static class member SizeInMB is not initialized in this constructor nor in any functions that it calls.
This commit is contained in:
Akash 2015-10-22 20:15:33 +05:30
parent c1f1646dab
commit 61e1686da3

View File

@ -62,11 +62,14 @@ struct McdSlotItem
McdSlotItem() McdSlotItem()
{ {
Slot = -1; Slot = -1;
SizeInMB = 0;
Type = MemoryCard_None;
IsPSX = false; IsPSX = false;
IsPresent = false; IsPresent = false;
IsEnabled = false; IsEnabled = false;
IsFormatted = false;
} }
}; };