mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-03-26 02:38:04 +00:00
fix uninitialized pointer fields in GraphicsPage class
This commit is contained in:
parent
21b16f8425
commit
f0d3fc73d5
@ -33,7 +33,11 @@ QString getAspect(int x, int y)
|
|||||||
}
|
}
|
||||||
|
|
||||||
Launcher::GraphicsPage::GraphicsPage(Files::ConfigurationManager &cfg, GraphicsSettings &graphicsSetting, QWidget *parent)
|
Launcher::GraphicsPage::GraphicsPage(Files::ConfigurationManager &cfg, GraphicsSettings &graphicsSetting, QWidget *parent)
|
||||||
: mCfgMgr(cfg)
|
: mOgre(NULL)
|
||||||
|
, mSelectedRenderSystem(NULL)
|
||||||
|
, mOpenGLRenderSystem(NULL)
|
||||||
|
, mDirect3DRenderSystem(NULL)
|
||||||
|
, mCfgMgr(cfg)
|
||||||
, mGraphicsSettings(graphicsSetting)
|
, mGraphicsSettings(graphicsSetting)
|
||||||
, QWidget(parent)
|
, QWidget(parent)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user