mirror of
https://github.com/libretro/pcsx2.git
synced 2025-03-04 15:37:36 +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()
|
McdSlotItem()
|
||||||
{
|
{
|
||||||
Slot = -1;
|
Slot = -1;
|
||||||
|
SizeInMB = 0;
|
||||||
|
Type = MemoryCard_None;
|
||||||
|
|
||||||
IsPSX = false;
|
IsPSX = false;
|
||||||
IsPresent = false;
|
IsPresent = false;
|
||||||
IsEnabled = false;
|
IsEnabled = false;
|
||||||
|
IsFormatted = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user