diff options
author | Paul Gilbert | 2015-01-25 12:06:23 -0500 |
---|---|---|
committer | Paul Gilbert | 2015-01-25 12:06:23 -0500 |
commit | 50d3d79d7ff415be7210cc251d29716634a6292d (patch) | |
tree | 52ca80fdf48b65b9e625ac3621f24ddc05487d44 /engines/xeen | |
parent | ef283252b36b361e3775d07e8f9fe887af1ab9ba (diff) | |
download | scummvm-rg350-50d3d79d7ff415be7210cc251d29716634a6292d.tar.gz scummvm-rg350-50d3d79d7ff415be7210cc251d29716634a6292d.tar.bz2 scummvm-rg350-50d3d79d7ff415be7210cc251d29716634a6292d.zip |
XEEN: Revert window restriction, since all window draws use absolute x,y
Diffstat (limited to 'engines/xeen')
-rw-r--r-- | engines/xeen/screen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |