diff options
author | Willem Jan Palenstijn | 2012-09-21 22:34:27 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2012-09-21 22:35:15 +0200 |
commit | 23de05926279d4d77ce7fd0830a51b86dd5fde98 (patch) | |
tree | 45d8d146587bf0545655cbabf5a438fe8dbda798 /video | |
parent | 42e395859f44f1082e392fd5db217750ffdcbbb9 (diff) | |
download | scummvm-rg350-23de05926279d4d77ce7fd0830a51b86dd5fde98.tar.gz scummvm-rg350-23de05926279d4d77ce7fd0830a51b86dd5fde98.tar.bz2 scummvm-rg350-23de05926279d4d77ce7fd0830a51b86dd5fde98.zip |
VIDEO: Make getCurFrame declaration consistent
The declaration used int32 while the definition used int.
This should fix building on AmigaOS4 (bug #3570577).
Diffstat (limited to 'video')
-rw-r--r-- | video/video_decoder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/video_decoder.h b/video/video_decoder.h index 66980ab09b..59cce2e327 100644 --- a/video/video_decoder.h +++ b/video/video_decoder.h @@ -204,7 +204,7 @@ public: * Returns the current frame number of the video. * @return the last frame decoded by the video */ - int32 getCurFrame() const; + int getCurFrame() const; /** * Returns the number of frames in the video. |