pcsx2-debug: Initialize all class members

CID 146995 (#1 of 1): Uninitialized pointer field (UNINIT_CTOR)member_not_init_in_gen_ctor: The compiler-generated constructor for this class does not initialize cpu
This commit is contained in:
Akash 2015-10-23 20:22:21 +05:30
parent f95664e846
commit 1512b3ba6c
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ public:
private:
DisassemblyEntry* getEntry(u32 address);
std::map<u32,DisassemblyEntry*> entries;
DebugInterface* cpu;
DebugInterface* cpu = NULL;
static int maxParamChars;
};