diff options
author | Paul Gilbert | 2019-09-22 10:54:04 -0700 |
---|---|---|
committer | Paul Gilbert | 2019-09-22 10:55:43 -0700 |
commit | 8f40cb95a412a4770b3f849486dbf41c90283685 (patch) | |
tree | aee009cdc468c19ba5d2f90ca5e32e864c5a0e3e | |
parent | ede3fbb701766230db3bba020be546494aa33f24 (diff) | |
download | scummvm-rg350-8f40cb95a412a4770b3f849486dbf41c90283685.tar.gz scummvm-rg350-8f40cb95a412a4770b3f849486dbf41c90283685.tar.bz2 scummvm-rg350-8f40cb95a412a4770b3f849486dbf41c90283685.zip |
XEEN: Fix drawing left border of minimap
-rw-r--r-- | engines/xeen/window.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/xeen/window.cpp b/engines/xeen/window.cpp index caa17b7563..4f229ce86f 100644 --- a/engines/xeen/window.cpp +++ b/engines/xeen/window.cpp @@ -40,7 +40,7 @@ Windows::Windows() { Window windows[48] = { Window(Common::Rect(0, 0, 320, 200), 0, 0, 0, 0, 320, 200), - Window(Common::Rect(237, 9, 317, 74), 0, 0, 237, 12, 307, 68), + Window(Common::Rect(223, 9, 317, 74), 0, 0, 237, 12, 307, 68), Window(Common::Rect(225, 1, 320, 73), 1, 8, 225, 1, 319, 73), Window(Common::Rect(0, 0, 230, 149), 0, 0, 9, 8, 216, 140), Window(Common::Rect(235, 148, 309, 189), 2, 8, 0, 0, 0, 0), |