diff options
author | Nicolas Bacca | 2005-01-04 23:00:03 +0000 |
---|---|---|
committer | Nicolas Bacca | 2005-01-04 23:00:03 +0000 |
commit | 434d59a5d679c501e87875f81463abeb0d79a28c (patch) | |
tree | 02d9b2ae3670b069e58e4bcb3f269b0f7d8ebc54 | |
parent | 7b268f7d4778a9b392a755b519093db5cc8bdd3d (diff) | |
download | scummvm-rg350-434d59a5d679c501e87875f81463abeb0d79a28c.tar.gz scummvm-rg350-434d59a5d679c501e87875f81463abeb0d79a28c.tar.bz2 scummvm-rg350-434d59a5d679c501e87875f81463abeb0d79a28c.zip |
Fix uninitialized variable, fixes Hide Toolbar random failures - thanks iKi
svn-id: r16429
-rw-r--r-- | backends/wince/wince-sdl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/wince/wince-sdl.cpp b/backends/wince/wince-sdl.cpp index bd9c89a5c6..34ef3678ea 100644 --- a/backends/wince/wince-sdl.cpp +++ b/backends/wince/wince-sdl.cpp @@ -210,7 +210,7 @@ OSystem *OSystem_WINCE3_create() { OSystem_WINCE3::OSystem_WINCE3() : OSystem_SDL(), _orientationLandscape(false), _newOrientation(false), _panelInitialized(false), _panelVisible(false), _panelStateForced(false), _forceHideMouse(false), - _freeLook(false), _toolbarHighDrawn(false), _zoomUp(false), _zoomDown(false), + _freeLook(false), _forcePanelInvisible(false), _toolbarHighDrawn(false), _zoomUp(false), _zoomDown(false), _scalersChanged(false), _monkeyKeyboard(false), _lastKeyPressed(0) { _isSmartphone = CEDevice::hasSmartphoneResolution(); @@ -1631,4 +1631,4 @@ OSystem_WINCE3::zoneDesc OSystem_WINCE3::_zones[TOTAL_ZONES] = { { 0, 0, 320, 145 }, { 0, 145, 150, 55 }, { 150, 145, 170, 55 } -};
\ No newline at end of file +}; |