diff options
Diffstat (limited to 'engines/sci/gui/gui.cpp')
| -rw-r--r-- | engines/sci/gui/gui.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/engines/sci/gui/gui.cpp b/engines/sci/gui/gui.cpp index 432d50a9b4..2baf08c43f 100644 --- a/engines/sci/gui/gui.cpp +++ b/engines/sci/gui/gui.cpp @@ -110,9 +110,9 @@ reg_t SciGui::newWindow(Common::Rect dims, Common::Rect restoreRect, uint16 styl  	GuiWindow *wnd = NULL;  	if (restoreRect.top != 0 && restoreRect.left != 0 && restoreRect.height() != 0 && restoreRect.width() != 0) -		wnd = _windowMgr->NewWindow(dims, &restoreRect, title, style, priority, 0); +		wnd = _windowMgr->NewWindow(dims, &restoreRect, title, style, priority, false);  	else -		wnd = _windowMgr->NewWindow(dims, NULL, title, style, priority, 0); +		wnd = _windowMgr->NewWindow(dims, NULL, title, style, priority, false);  	wnd->penClr = colorPen;  	wnd->backClr = colorBack;  	_windowMgr->DrawWindow(wnd); | 
