aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/sound
diff options
context:
space:
mode:
authorPaul Gilbert2016-10-30 15:00:16 -0400
committerPaul Gilbert2016-10-30 15:00:16 -0400
commit1ff861ed3f4cb591e7d19b79b40a49d662a32755 (patch)
treee881222ba143c1fb40262259cec5958ac23c9a4b /engines/titanic/sound
parentf04174aa8a0c871dbb2a5523d747ec11d65c036c (diff)
downloadscummvm-rg350-1ff861ed3f4cb591e7d19b79b40a49d662a32755.tar.gz
scummvm-rg350-1ff861ed3f4cb591e7d19b79b40a49d662a32755.tar.bz2
scummvm-rg350-1ff861ed3f4cb591e7d19b79b40a49d662a32755.zip
TITANIC: Fix somer compiler warnings
Diffstat (limited to 'engines/titanic/sound')
-rw-r--r--engines/titanic/sound/wave_file.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/titanic/sound/wave_file.cpp b/engines/titanic/sound/wave_file.cpp
index ade94aad50..2c583f2160 100644
--- a/engines/titanic/sound/wave_file.cpp
+++ b/engines/titanic/sound/wave_file.cpp
@@ -51,9 +51,9 @@ uint CWaveFile::getDurationTicks() const {
// a desired size. Since I have no idea how the system API
// method works, for now I'm using a simple ratio of a
// sample output to input value
- uint size = _size - 0x46;
- double newSize = (double)size * (1475712.0 / 199836.0);
- return newSize * 1000.0 / _stream->getRate();
+ uint dataSize = _size - 0x46;
+ double newSize = (double)dataSize * (1475712.0 / 199836.0);
+ return (uint)(newSize * 1000.0 / _stream->getRate());
}
bool CWaveFile::loadSound(const CString &name) {