mirror of
https://github.com/libretro/pcsx2.git
synced 2024-12-12 20:16:19 +00:00
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:
parent
c1f1646dab
commit
61e1686da3
@ -62,11 +62,14 @@ struct McdSlotItem
|
||||
|
||||
McdSlotItem()
|
||||
{
|
||||
Slot = -1;
|
||||
Slot = -1;
|
||||
SizeInMB = 0;
|
||||
Type = MemoryCard_None;
|
||||
|
||||
IsPSX = false;
|
||||
IsPresent = false;
|
||||
IsEnabled = false;
|
||||
IsFormatted = false;
|
||||
}
|
||||
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user