aboutsummaryrefslogtreecommitdiff
path: root/saga/interface.h
diff options
context:
space:
mode:
authorEugene Sandulenko2004-10-04 23:09:38 +0000
committerEugene Sandulenko2004-10-04 23:09:38 +0000
commit8b7740d8afda1b9796f8df91242a41f5eed62190 (patch)
tree13c82c40ef575f574018971e25b6d90889b45534 /saga/interface.h
parent05412066b1cbcd8ce202c25f892f69009ab9ee34 (diff)
downloadscummvm-rg350-8b7740d8afda1b9796f8df91242a41f5eed62190.tar.gz
scummvm-rg350-8b7740d8afda1b9796f8df91242a41f5eed62190.tar.bz2
scummvm-rg350-8b7740d8afda1b9796f8df91242a41f5eed62190.zip
R_POINT -> Common::Point, R_RECT -> Common::Rect. Less R_ prefixes.
svn-id: r15414
Diffstat (limited to 'saga/interface.h')
-rw-r--r--saga/interface.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/saga/interface.h b/saga/interface.h
index 7ce3163735..59915055df 100644
--- a/saga/interface.h
+++ b/saga/interface.h
@@ -160,16 +160,16 @@ class Interface {
int deactivate();
int setStatusText(const char *new_txt);
int draw();
- int update(R_POINT *imouse_pt, int update_flag);
+ int update(Point *imouse_pt, int update_flag);
private:
- int hitTest(R_POINT *imouse_pt, int *ibutton);
+ int hitTest(Point *imouse_pt, int *ibutton);
int drawStatusBar(R_SURFACE *ds);
- int handleCommandUpdate(R_SURFACE *ds, R_POINT *imouse_pt);
- int handleCommandClick(R_SURFACE *ds, R_POINT *imouse_pt);
- int handlePlayfieldUpdate(R_SURFACE *ds, R_POINT *imouse_pt);
- int handlePlayfieldClick(R_SURFACE *ds, R_POINT *imouse_pt);
+ int handleCommandUpdate(R_SURFACE *ds, Point *imouse_pt);
+ int handleCommandClick(R_SURFACE *ds, Point *imouse_pt);
+ int handlePlayfieldUpdate(R_SURFACE *ds, Point *imouse_pt);
+ int handlePlayfieldClick(R_SURFACE *ds, Point *imouse_pt);
private:
SagaEngine *_vm;