mirror of https://github.com/PCSX2/pcsx2.git
Debugger: Properly initialize primitive class members
This commit is contained in:
parent
c28301bb7e
commit
1697c2160c
|
@ -231,7 +231,7 @@ void RegisterWidget::customMenuRequested(QPoint pos)
|
|||
else
|
||||
m_contextMenu->clear();
|
||||
|
||||
int categoryIndex = ui.registerTabs->currentIndex();
|
||||
const int categoryIndex = ui.registerTabs->currentIndex();
|
||||
|
||||
QAction* action = 0;
|
||||
|
||||
|
|
|
@ -86,6 +86,6 @@ private:
|
|||
s32 m_selected128Field = 0; // Values are from 0 to 3
|
||||
|
||||
// TODO: Save this configuration ??
|
||||
bool m_showVU0FFloat;
|
||||
bool m_showFPRFloat;
|
||||
bool m_showVU0FFloat = false;
|
||||
bool m_showFPRFloat = false;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue