diff options
author | Paul Gilbert | 2016-09-03 10:34:38 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-09-03 10:34:38 -0400 |
commit | c224d35a432fff7e1d0a6bf5368f7f2e81a45e27 (patch) | |
tree | c568bc54a2eaf5c0cbc69f76e1e771659690fd7c /engines/titanic/gfx | |
parent | 38cf75e885983b88d03272f35e39f5d874eae575 (diff) | |
download | scummvm-rg350-c224d35a432fff7e1d0a6bf5368f7f2e81a45e27.tar.gz scummvm-rg350-c224d35a432fff7e1d0a6bf5368f7f2e81a45e27.tar.bz2 scummvm-rg350-c224d35a432fff7e1d0a6bf5368f7f2e81a45e27.zip |
TITANIC: Identified sound balance usage in the engine
Diffstat (limited to 'engines/titanic/gfx')
-rw-r--r-- | engines/titanic/gfx/st_button.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/gfx/st_button.cpp b/engines/titanic/gfx/st_button.cpp index 6fc31f4c64..d735796bd6 100644 --- a/engines/titanic/gfx/st_button.cpp +++ b/engines/titanic/gfx/st_button.cpp @@ -68,7 +68,7 @@ void CSTButton::load(SimpleFile *file) { bool CSTButton::MouseButtonDownMsg(CMouseButtonDownMsg *msg) { playMovie(0); - playSound(_soundName, 100, 0, 0); + playSound(_soundName); return true; } |