From 434d59a5d679c501e87875f81463abeb0d79a28c Mon Sep 17 00:00:00 2001 From: Nicolas Bacca Date: Tue, 4 Jan 2005 23:00:03 +0000 Subject: Fix uninitialized variable, fixes Hide Toolbar random failures - thanks iKi svn-id: r16429 --- backends/wince/wince-sdl.cpp | 4 ++-- 1 file 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 +}; -- cgit v1.2.3