pcsx2:gui: init all members in constructor

This commit is contained in:
Gregory Hainaut 2015-09-21 20:24:39 +02:00
parent e41f786c72
commit 4d8a23c1fc
5 changed files with 14 additions and 7 deletions

View File

@ -219,9 +219,11 @@ struct AppImageIds
ToolbarIds() ToolbarIds()
{ {
Settings = Play = Settings = -1;
PluginVideo = Play = -1;
PluginAudio = Resume = -1;
PluginVideo = -1;
PluginAudio = -1;
PluginPad = -1; PluginPad = -1;
} }
} Toolbars; } Toolbars;

View File

@ -697,10 +697,13 @@ Pcsx2App::Pcsx2App()
m_PendingSaves = 0; m_PendingSaves = 0;
m_ScheduledTermination = false; m_ScheduledTermination = false;
m_UseGUI = true;
m_NoGuiExitPrompt = true;
m_id_MainFrame = wxID_ANY; m_id_MainFrame = wxID_ANY;
m_id_GsFrame = wxID_ANY; m_id_GsFrame = wxID_ANY;
m_id_ProgramLogBox = wxID_ANY; m_id_ProgramLogBox = wxID_ANY;
m_id_Disassembler = wxID_ANY;
m_ptr_ProgramLog = NULL; m_ptr_ProgramLog = NULL;
SetAppName( L"PCSX2" ); SetAppName( L"PCSX2" );

View File

@ -1090,6 +1090,7 @@ public:
SysExecEvent_Execute() SysExecEvent_Execute()
: m_UseCDVDsrc(false) : m_UseCDVDsrc(false)
, m_UseELFOverride(false) , m_UseELFOverride(false)
, m_cdvdsrc_type(CDVDsrc_Iso)
{ {
} }

View File

@ -165,7 +165,7 @@ protected:
ConsoleColors color; ConsoleColors color;
int startpoint; int startpoint;
ColorSection() {} ColorSection() : color(Color_Default), startpoint(0) {}
ColorSection( ConsoleColors _color, int msgptr ) : color(_color), startpoint(msgptr) { } ColorSection( ConsoleColors _color, int msgptr ) : color(_color), startpoint(msgptr) { }
}; };

View File

@ -47,6 +47,7 @@ CtrlRegisterList::CtrlRegisterList(wxWindow* parent, DebugInterface* _cpu)
charWidth = g_Conf->EmuOptions.Debugger.FontWidth; charWidth = g_Conf->EmuOptions.Debugger.FontWidth;
category = 0; category = 0;
maxBits = 128; maxBits = 128;
lastPc = 0xFFFFFFFF;
for (int i = 0; i < cpu->getRegisterCategoryCount(); i++) for (int i = 0; i < cpu->getRegisterCategoryCount(); i++)
{ {