From 50d3d79d7ff415be7210cc251d29716634a6292d Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 25 Jan 2015 12:06:23 -0500 Subject: XEEN: Revert window restriction, since all window draws use absolute x,y --- engines/xeen/screen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/xeen') diff --git a/engines/xeen/screen.cpp b/engines/xeen/screen.cpp index 4eabc2b60a..5088829cf6 100644 --- a/engines/xeen/screen.cpp +++ b/engines/xeen/screen.cpp @@ -38,7 +38,7 @@ Window::Window(XeenEngine *vm, const Common::Rect &bounds, int a, int border, _vm(vm), _enabled(false), _a(a), _border(border), _xLo(xLo), _ycL(ycL), _xHi(xHi), _ycH(ycH) { setBounds(bounds); - create(_vm->_screen, bounds); + create(_vm->_screen, Common::Rect(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)); } void Window::setBounds(const Common::Rect &r) { -- cgit v1.2.3