forked from mirror/openmw-tes3mp
fix uninitialized pointer fields in GraphicsPage class
This commit is contained in:
parent
21b16f8425
commit
f0d3fc73d5
1 changed files with 5 additions and 1 deletions
|
@ -33,7 +33,11 @@ QString getAspect(int x, int y)
|
|||
}
|
||||
|
||||
Launcher::GraphicsPage::GraphicsPage(Files::ConfigurationManager &cfg, GraphicsSettings &graphicsSetting, QWidget *parent)
|
||||
: mCfgMgr(cfg)
|
||||
: mOgre(NULL)
|
||||
, mSelectedRenderSystem(NULL)
|
||||
, mOpenGLRenderSystem(NULL)
|
||||
, mDirect3DRenderSystem(NULL)
|
||||
, mCfgMgr(cfg)
|
||||
, mGraphicsSettings(graphicsSetting)
|
||||
, QWidget(parent)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue