aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/pegasus/movie.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/pegasus/movie.cpp b/engines/pegasus/movie.cpp
index f4aa9eecee..b7c025a89b 100644
--- a/engines/pegasus/movie.cpp
+++ b/engines/pegasus/movie.cpp
@@ -122,7 +122,8 @@ void Movie::moveMovieBoxTo(const CoordType h, const CoordType v) {
}
void Movie::setVolume(uint16 volume) {
- // TODO
+ if (_video)
+ _video->setVolume(MIN<uint>(volume, 0xFF));
}
void Movie::setTime(const TimeValue time, const TimeScale scale) {