diff options
Diffstat (limited to 'saga/actionmap.h')
-rw-r--r-- | saga/actionmap.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/saga/actionmap.h b/saga/actionmap.h index 817d466ad6..fa2f8dc887 100644 --- a/saga/actionmap.h +++ b/saga/actionmap.h @@ -42,14 +42,14 @@ enum ACTION_FLAGS { ACTION_TERMINUS = (1<<3) }; -struct R_ACTIONMAP_ENTRY { +struct ACTIONMAP_ENTRY { int flags; int nClickareas; int defaultVerb; int exitScene; int entranceNum; - R_CLICKAREA *clickareas; + CLICKAREA *clickareas; }; class ActionMap { @@ -60,7 +60,7 @@ class ActionMap { const int getExitScene(int exitNum); int hitTest(const Point& imousePt); - int draw(R_SURFACE *ds, int color); + int draw(SURFACE *ds, int color); void info(void); @@ -68,7 +68,7 @@ private: SagaEngine *_vm; int _nExits; - R_ACTIONMAP_ENTRY *_exitsTbl; + ACTIONMAP_ENTRY *_exitsTbl; }; } // End of namespace Saga |