diff options
author | Matthew Hoops | 2012-05-12 21:28:13 -0400 |
---|---|---|
committer | Matthew Hoops | 2012-05-12 21:28:13 -0400 |
commit | 9e330174c8b8a0d2574746f1bc055423be263311 (patch) | |
tree | e8a0ebc760aa4006642e5deb631829796ca815ba /video/avi_decoder.h | |
parent | 0f6059580e9e4eedbc66460da0e8ef4c56c830dc (diff) | |
download | scummvm-rg350-9e330174c8b8a0d2574746f1bc055423be263311.tar.gz scummvm-rg350-9e330174c8b8a0d2574746f1bc055423be263311.tar.bz2 scummvm-rg350-9e330174c8b8a0d2574746f1bc055423be263311.zip |
VIDEO: Change getElapsedTime() into getTime()
This name change accompanies a slight meaning change; now it means the current time position from the beginning of the video and not from starting the video.
Diffstat (limited to 'video/avi_decoder.h')
-rw-r--r-- | video/avi_decoder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/avi_decoder.h b/video/avi_decoder.h index 508760ec89..edd08c42a0 100644 --- a/video/avi_decoder.h +++ b/video/avi_decoder.h @@ -195,7 +195,7 @@ public: uint16 getWidth() const { return _header.width; } uint16 getHeight() const { return _header.height; } uint32 getFrameCount() const { return _header.totalFrames; } - uint32 getElapsedTime() const; + uint32 getTime() const; const Graphics::Surface *decodeNextFrame(); Graphics::PixelFormat getPixelFormat() const; const byte *getPalette() { _dirtyPalette = false; return _palette; } |