diff options
| author | Filippos Karapetis | 2014-12-25 16:22:36 +0200 |
|---|---|---|
| committer | Filippos Karapetis | 2014-12-25 16:22:36 +0200 |
| commit | 36c851d0e47b18205ac7ac91eb33666e4abe95ca (patch) | |
| tree | dfd87482fa37bf4186495ae49c1621178b1651aa /engines/zvision/video | |
| parent | 5535cb02fc8dfaf2c77911c223c912f5b07bdb63 (diff) | |
| download | scummvm-rg350-36c851d0e47b18205ac7ac91eb33666e4abe95ca.tar.gz scummvm-rg350-36c851d0e47b18205ac7ac91eb33666e4abe95ca.tar.bz2 scummvm-rg350-36c851d0e47b18205ac7ac91eb33666e4abe95ca.zip | |
ZVISION: Fix frame rate for RLF videos and remove hack in AnimationNode
_frameTime refers to msec, not ticks
Diffstat (limited to 'engines/zvision/video')
| -rw-r--r-- | engines/zvision/video/rlf_decoder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/video/rlf_decoder.h b/engines/zvision/video/rlf_decoder.h index d56ff2da92..740f3fdd43 100644 --- a/engines/zvision/video/rlf_decoder.h +++ b/engines/zvision/video/rlf_decoder.h @@ -53,7 +53,7 @@ private: bool seek(const Audio::Timestamp &time); protected: - Common::Rational getFrameRate() const { return Common::Rational(60, _frameTime); } + Common::Rational getFrameRate() const { return Common::Rational(1000, _frameTime); } private: enum EncodingType { |
