Skip to content
Snippets Groups Projects
Commit 8da9a472 authored by Tofu Linden's avatar Tofu Linden
Browse files

CID-383

Checker: UNINIT_CTOR
Function: LLFloaterHardwareSettings::LLFloaterHardwareSettings(const LLSD &)
File: /indra/newview/llfloaterhardwaresettings.cpp
parent 50bf40a6
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,17 @@
#include "llsliderctrl.h"
LLFloaterHardwareSettings::LLFloaterHardwareSettings(const LLSD& key)
: LLFloater(key)
: LLFloater(key),
// these should be set on imminent refresh() call,
// but init them anyway
mUseVBO(0),
mUseAniso(0),
mFSAASamples(0),
mGamma(0.0),
mVideoCardMem(0),
mFogRatio(0.0),
mProbeHardwareOnStartup(FALSE)
{
//LLUICtrlFactory::getInstance()->buildFloater(this, "floater_hardware_settings.xml");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment