aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/core
diff options
context:
space:
mode:
authorPaul Gilbert2016-06-29 19:29:32 -0400
committerPaul Gilbert2016-07-15 19:25:53 -0400
commita82bcd3ce7ef0ae604af45fdb56668fca47e7137 (patch)
tree158b0e5ad0c83092e79da37643321bea1dab37fd /engines/titanic/core
parentce0be01e317996c0454a85dd9a24b896e13ddc8e (diff)
downloadscummvm-rg350-a82bcd3ce7ef0ae604af45fdb56668fca47e7137.tar.gz
scummvm-rg350-a82bcd3ce7ef0ae604af45fdb56668fca47e7137.tar.bz2
scummvm-rg350-a82bcd3ce7ef0ae604af45fdb56668fca47e7137.zip
TITANIC: Added CMovieRangeInfo methods
Diffstat (limited to 'engines/titanic/core')
-rw-r--r--engines/titanic/core/game_object.cpp4
-rw-r--r--engines/titanic/core/game_object.h10
2 files changed, 8 insertions, 6 deletions
diff --git a/engines/titanic/core/game_object.cpp b/engines/titanic/core/game_object.cpp
index 2a2c6cf772..af866ddac4 100644
--- a/engines/titanic/core/game_object.cpp
+++ b/engines/titanic/core/game_object.cpp
@@ -1197,12 +1197,12 @@ void CGameObject::setMovie14(int v) {
_surface->_movie->_field14 = v;
}
-void CGameObject::movie38(int v1, int v2) {
+void CGameObject::surface38(int v1, int v2) {
if (_surface)
_surface->proc38(v1, v2);
}
-void CGameObject::movie38(int v1) {
+void CGameObject::surface38(int v1) {
if (_surface)
_surface->proc38(-1, v1);
}
diff --git a/engines/titanic/core/game_object.h b/engines/titanic/core/game_object.h
index 553367378c..98d6d6099e 100644
--- a/engines/titanic/core/game_object.h
+++ b/engines/titanic/core/game_object.h
@@ -387,10 +387,6 @@ protected:
void setMovie14(int v);
- void movie38(int v1, int v2);
-
- void movie38(int v1);
-
void fn10(int v1, int v2, int v3);
/**
@@ -848,6 +844,12 @@ public:
* Gets a dial region for a given NPC
*/
int talkGetDIalRegion(const CString &name, int dialNum);
+
+ /*--- CVideoSurface Methods ---*/
+
+ void surface38(int v1, int v2);
+
+ void surface38(int v1);
};
} // End of namespace Titanic