aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/game_view.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/titanic/game_view.h')
-rw-r--r--engines/titanic/game_view.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/engines/titanic/game_view.h b/engines/titanic/game_view.h
index be4d934a33..a3e1fe7720 100644
--- a/engines/titanic/game_view.h
+++ b/engines/titanic/game_view.h
@@ -57,7 +57,7 @@ public:
*/
virtual void setView(CViewItem *item) = 0;
- virtual void proc4(const Common::Rect &bounds) = 0;
+ virtual void draw(const Common::Rect &bounds) = 0;
/**
* Creates a surface from a specified resource
@@ -76,7 +76,10 @@ public:
*/
virtual void setView(CViewItem *item);
- virtual void proc4(const Common::Rect &bounds);
+ /**
+ * Handles drawing the view
+ */
+ virtual void draw(const Common::Rect &bounds);
};
} // End of namespace Titanic