aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/user_interface.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-03-18 19:56:29 -0400
committerPaul Gilbert2014-03-18 19:56:29 -0400
commit4875c83f1023585ff7c807f5633aac84eb5e3c2b (patch)
treee82dd34aaa95951fb4fe367d79785721addb29bd /engines/mads/user_interface.h
parent306ea295eef03b23882fc4bfa5343b72cb8c4067 (diff)
downloadscummvm-rg350-4875c83f1023585ff7c807f5633aac84eb5e3c2b.tar.gz
scummvm-rg350-4875c83f1023585ff7c807f5633aac84eb5e3c2b.tar.bz2
scummvm-rg350-4875c83f1023585ff7c807f5633aac84eb5e3c2b.zip
MADS: Implemented DirtyArea::setUISlot
Diffstat (limited to 'engines/mads/user_interface.h')
-rw-r--r--engines/mads/user_interface.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/engines/mads/user_interface.h b/engines/mads/user_interface.h
index 8b87b4e65d..a474fe1fa1 100644
--- a/engines/mads/user_interface.h
+++ b/engines/mads/user_interface.h
@@ -42,18 +42,17 @@ public:
int _field2;
int _spritesIndex;
int _frameNumber;
- int _field6;
- int _field8;
+ Common::Point _position;
UISlot();
};
class UISlots : public Common::Array<UISlot> {
public:
- void add(int v1, int v2, int frameNumber, int spritesIndex);
+ void add(const Common::Point &pt, int frameNumber, int spritesIndex);
void fullRefresh();
- void call(int v1, int v2);
+ void draw(int v1, int v2);
};