aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support
diff options
context:
space:
mode:
authorPaul Gilbert2016-10-30 08:10:18 -0400
committerPaul Gilbert2016-10-30 08:10:18 -0400
commit6ffa5228c1691e5794600343b083bc922062be5f (patch)
tree9f5a517d798ecbf61049da7cd26f91d560e8878e /engines/titanic/support
parent4fbaa41b147cbfaf3b7370a53b4c8c2ba099f791 (diff)
downloadscummvm-rg350-6ffa5228c1691e5794600343b083bc922062be5f.tar.gz
scummvm-rg350-6ffa5228c1691e5794600343b083bc922062be5f.tar.bz2
scummvm-rg350-6ffa5228c1691e5794600343b083bc922062be5f.zip
TITANIC: Fix setting different video framerates
Diffstat (limited to 'engines/titanic/support')
-rw-r--r--engines/titanic/support/avi_surface.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/titanic/support/avi_surface.cpp b/engines/titanic/support/avi_surface.cpp
index 32fa8e4d7c..c3fe54522b 100644
--- a/engines/titanic/support/avi_surface.cpp
+++ b/engines/titanic/support/avi_surface.cpp
@@ -349,9 +349,11 @@ bool AVISurface::addEvent(int frameNumber, CGameObject *obj) {
void AVISurface::setFrameRate(double rate) {
// Convert rate from fps to relative to 1.0 (normal speed)
+ const int PRECISION = 10000;
double playRate = rate / 15.0; // Standard 15 FPS
+ Common::Rational pRate(playRate * PRECISION, PRECISION);
- _decoder->setRate(playRate);
+ _decoder->setRate(pRate);
}
Graphics::ManagedSurface *AVISurface::getSecondarySurface() {