aboutsummaryrefslogtreecommitdiff
path: root/saga/interface.h
diff options
context:
space:
mode:
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;