aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/game/sgt/chest_of_drawers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/titanic/game/sgt/chest_of_drawers.cpp')
-rw-r--r--engines/titanic/game/sgt/chest_of_drawers.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/titanic/game/sgt/chest_of_drawers.cpp b/engines/titanic/game/sgt/chest_of_drawers.cpp
index d2d40c8e99..c9664d21ea 100644
--- a/engines/titanic/game/sgt/chest_of_drawers.cpp
+++ b/engines/titanic/game/sgt/chest_of_drawers.cpp
@@ -21,6 +21,7 @@
*/
#include "titanic/game/sgt/chest_of_drawers.h"
+#include "titanic/translation.h"
namespace Titanic {
@@ -47,7 +48,7 @@ bool CChestOfDrawers::TurnOn(CTurnOn *msg) {
_startFrame = 1;
_endFrame = 14;
playMovie(1, 14, MOVIE_NOTIFY_OBJECT | MOVIE_WAIT_FOR_FINISH);
- playSound("b#11.wav");
+ playSound(TRANSLATE("b#11.wav", "b#96.wav"));
}
return true;
@@ -63,7 +64,7 @@ bool CChestOfDrawers::TurnOff(CTurnOff *msg) {
_startFrame = 14;
_endFrame = 27;
playMovie(14, 27, MOVIE_NOTIFY_OBJECT | MOVIE_WAIT_FOR_FINISH);
- playSound("b#11.wav");
+ playSound(TRANSLATE("b#11.wav", "b#96.wav"));
}
return true;