mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 22:05:38 +00:00
Merge pull request #118 from firewave/uninit
Model3.cpp: avoid usage of uninitialized memory
This commit is contained in:
commit
a19ba3cba8
|
@ -3205,6 +3205,7 @@ CModel3::CModel3(Util::Config::Node &config)
|
||||||
: m_config(config),
|
: m_config(config),
|
||||||
m_multiThreaded(config["MultiThreaded"].ValueAs<bool>()),
|
m_multiThreaded(config["MultiThreaded"].ValueAs<bool>()),
|
||||||
m_gpuMultiThreaded(config["GPUMultiThreaded"].ValueAs<bool>()),
|
m_gpuMultiThreaded(config["GPUMultiThreaded"].ValueAs<bool>()),
|
||||||
|
sndBrdWakeNotify(false),
|
||||||
TileGen(config),
|
TileGen(config),
|
||||||
GPU(config),
|
GPU(config),
|
||||||
SoundBoard(config),
|
SoundBoard(config),
|
||||||
|
|
Loading…
Reference in a new issue