aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support/video_surface.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-04-10 09:19:37 -0400
committerPaul Gilbert2016-04-10 09:19:37 -0400
commit78d03f9784d17f65b29e5b6836d23d8f494d3c7c (patch)
tree28f242e51fcbef416e0b5cef568f7dd32366aa4f /engines/titanic/support/video_surface.cpp
parentc96164dde01f6336615528d2a7c930c37c696be2 (diff)
downloadscummvm-rg350-78d03f9784d17f65b29e5b6836d23d8f494d3c7c.tar.gz
scummvm-rg350-78d03f9784d17f65b29e5b6836d23d8f494d3c7c.tar.bz2
scummvm-rg350-78d03f9784d17f65b29e5b6836d23d8f494d3c7c.zip
TITANIC: Television video is now playing
Diffstat (limited to 'engines/titanic/support/video_surface.cpp')
-rw-r--r--engines/titanic/support/video_surface.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/titanic/support/video_surface.cpp b/engines/titanic/support/video_surface.cpp
index c7b437e1e7..3fb513c5fc 100644
--- a/engines/titanic/support/video_surface.cpp
+++ b/engines/titanic/support/video_surface.cpp
@@ -379,14 +379,14 @@ void OSVideoSurface::shiftColors() {
// we already convert 16-bit surfaces as soon as they're loaded
}
-void OSVideoSurface::proc32(int v1, CVideoSurface *surface) {
+void OSVideoSurface::playMovie(int newStatus, CVideoSurface *surface) {
if (loadIfReady() && _movie)
- _movie->proc8(v1, surface);
+ _movie->play(newStatus, surface);
}
-void OSVideoSurface::proc34(int v1, int v2, int v3, bool v4) {
+void OSVideoSurface::playMovie(int v1, int v2, int v3, bool v4) {
if (loadIfReady() && _movie) {
- _movie->proc9(v1, v2, v3, v4);
+ _movie->play(v1, v2, v3, v4);
}
}