mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-04-28 13:55:14 -06:00
[Qt] Fix uninitialised values before usage
This commit is contained in:
parent
7abf755a57
commit
dbb2251f93
@ -36,6 +36,8 @@ game_list_frame::game_list_frame(std::shared_ptr<gui_settings> guiSettings, std:
|
||||
m_Text_Factor = xgui_settings->GetValue(GUI::gl_textFactor).toReal();
|
||||
m_showToolBar = xgui_settings->GetValue(GUI::gl_toolBarVisible).toBool();
|
||||
m_Icon_Color = xgui_settings->GetValue(GUI::gl_iconColor).value<QColor>();
|
||||
m_colSortOrder = xgui_settings->GetValue(GUI::gl_sortAsc).toBool() ? Qt::AscendingOrder : Qt::DescendingOrder;
|
||||
m_sortColumn = xgui_settings->GetValue(GUI::gl_sortCol).toInt();
|
||||
|
||||
m_oldLayoutIsList = m_isListLayout;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user