diff options
author | Paul Gilbert | 2012-05-13 09:58:07 +1000 |
---|---|---|
committer | Paul Gilbert | 2012-05-13 09:58:07 +1000 |
commit | 60deca7f54f395974c58683c9e8ce0a079a90ebf (patch) | |
tree | edee0010a6aa5b147d2fbeffa0746ff95a9bc46e /engines/tony | |
parent | c35b5397168299176eab69622044a98c8995a369 (diff) | |
download | scummvm-rg350-60deca7f54f395974c58683c9e8ce0a079a90ebf.tar.gz scummvm-rg350-60deca7f54f395974c58683c9e8ce0a079a90ebf.tar.bz2 scummvm-rg350-60deca7f54f395974c58683c9e8ce0a079a90ebf.zip |
TONY: Fix some more uninitialised field values
Diffstat (limited to 'engines/tony')
-rw-r--r-- | engines/tony/gfxengine.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/tony/gfxengine.cpp b/engines/tony/gfxengine.cpp index f6d047d267..2c8543326f 100644 --- a/engines/tony/gfxengine.cpp +++ b/engines/tony/gfxengine.cpp @@ -101,6 +101,10 @@ RMGfxEngine::RMGfxEngine() { m_bGUIOption = false; m_bGUIInterface = false; m_bGUIInventory = false; + m_bAlwaysDrawMouse = false; + m_bOption = false; + m_bLocationLoaded = false; + m_bInput = false; } RMGfxEngine::~RMGfxEngine() { |