aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/screen.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/xeen/screen.h')
-rw-r--r--engines/xeen/screen.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/xeen/screen.h b/engines/xeen/screen.h
index 4fd19d17eb..41b2821c29 100644
--- a/engines/xeen/screen.h
+++ b/engines/xeen/screen.h
@@ -81,13 +81,11 @@ private:
XeenEngine *_vm;
Common::List<Common::Rect> _dirtyRects;
byte _mainPalette[PALETTE_SIZE];
- byte _tempPaltte[PALETTE_SIZE];
+ byte _tempPalette[PALETTE_SIZE];
XSurface _pages[2];
XSurface _savedScreens[10];
bool _fadeIn;
- void setupWindows();
-
void mergeDirtyRects();
bool unionRectangle(Common::Rect &destRect, const Common::Rect &src1, const Common::Rect &src2);
@@ -110,6 +108,8 @@ public:
virtual ~Screen();
+ void setupWindows();
+
void closeWindows();
void update();
@@ -132,9 +132,9 @@ public:
void fadeOut(int step);
- void saveBackground(int slot = 0);
+ void saveBackground(int slot = 1);
- void restoreBackground(int slot = 0);
+ void restoreBackground(int slot = 1);
};
} // End of namespace Xeen