aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/pet_control/pet_inventory_glyphs.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-11-01 23:09:12 -0400
committerPaul Gilbert2016-11-01 23:09:12 -0400
commit566742d4456446d154a4a5813b4f11c9937577f7 (patch)
tree937ca39baee0abb97813961c7e22d3854e9e7045 /engines/titanic/pet_control/pet_inventory_glyphs.cpp
parent4a90553bf32c8537a6cccc5a9ab55ddb92f1f48c (diff)
downloadscummvm-rg350-566742d4456446d154a4a5813b4f11c9937577f7.tar.gz
scummvm-rg350-566742d4456446d154a4a5813b4f11c9937577f7.tar.bz2
scummvm-rg350-566742d4456446d154a4a5813b4f11c9937577f7.zip
TITANIC: Cleanup calls to playMovie
Diffstat (limited to 'engines/titanic/pet_control/pet_inventory_glyphs.cpp')
-rw-r--r--engines/titanic/pet_control/pet_inventory_glyphs.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/titanic/pet_control/pet_inventory_glyphs.cpp b/engines/titanic/pet_control/pet_inventory_glyphs.cpp
index 03293eb453..e6087b5c02 100644
--- a/engines/titanic/pet_control/pet_inventory_glyphs.cpp
+++ b/engines/titanic/pet_control/pet_inventory_glyphs.cpp
@@ -295,7 +295,7 @@ void CPetInventoryGlyph::startBackgroundMovie() {
if (_owner) {
CPetInventory *section = dynamic_cast<CPetInventory *>(_owner->getOwner());
if (section)
- section->playMovie(_background, 1);
+ section->playMovie(_background, MOVIE_REPEAT);
}
}
@@ -303,7 +303,7 @@ void CPetInventoryGlyph::startForegroundMovie() {
if (_owner) {
CPetInventory *section = dynamic_cast<CPetInventory *>(_owner->getOwner());
if (section)
- section->playMovie(_image, 1);
+ section->playMovie(_image, MOVIE_REPEAT);
}
}
@@ -311,7 +311,7 @@ void CPetInventoryGlyph::stopMovie() {
if (_owner) {
CPetInventory *section = dynamic_cast<CPetInventory *>(_owner->getOwner());
if (section)
- section->playMovie(nullptr, 1);
+ section->playMovie(nullptr, MOVIE_REPEAT);
}
}