aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.h
diff options
context:
space:
mode:
authorMax Horn2003-05-15 22:30:32 +0000
committerMax Horn2003-05-15 22:30:32 +0000
commitf4c7f3774318668a18814ebaac9922ad5f86062f (patch)
tree586bade6ba164ed8e11aae635f43cb53dfdfba1d /scumm/scumm.h
parent050358bc7fcaab2ba2821b0fd5b28e02bac2a0e6 (diff)
downloadscummvm-rg350-f4c7f3774318668a18814ebaac9922ad5f86062f.tar.gz
scummvm-rg350-f4c7f3774318668a18814ebaac9922ad5f86062f.tar.bz2
scummvm-rg350-f4c7f3774318668a18814ebaac9922ad5f86062f.zip
Make use of ScummVM::Rect
svn-id: r7546
Diffstat (limited to 'scumm/scumm.h')
-rw-r--r--scumm/scumm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/scumm.h b/scumm/scumm.h
index 11ee57a683..e7199171f7 100644
--- a/scumm/scumm.h
+++ b/scumm/scumm.h
@@ -105,7 +105,7 @@ struct NestedScript {
struct BlastText {
int16 xpos, ypos;
- int16 left, right, top, bottom;
+ ScummVM::Rect rect;
byte color;
byte charset;
bool center;
@@ -789,7 +789,7 @@ public:
void drawRoomObject(int i, int arg);
void drawBox(int x, int y, int x2, int y2, int color);
- void restoreBG(int left, int top, int right, int bottom, byte backColor = 0);
+ void restoreBG(ScummVM::Rect rect, byte backColor = 0);
void redrawBGStrip(int start, int num);
void redrawBGAreas();