mirror of https://github.com/PCSX2/pcsx2.git
GUI: Initialize all class members
CID 146984 (#1 of 1): Uninitialized scalar field (UNINIT_CTOR)6. uninit_member: Non-static class member m_performFileWrites is not initialized in this constructor nor in any functions that it calls.
This commit is contained in:
parent
589e838fa0
commit
55a88688a3
|
@ -29,6 +29,9 @@ bool RemoveDirectory( const wxString& dirname );
|
|||
FolderMemoryCard::FolderMemoryCard() {
|
||||
m_slot = 0;
|
||||
m_isEnabled = false;
|
||||
m_performFileWrites = false;
|
||||
m_framesUntilFlush = 0;
|
||||
m_timeLastWritten = 0;
|
||||
}
|
||||
|
||||
void FolderMemoryCard::InitializeInternalData() {
|
||||
|
|
Loading…
Reference in New Issue