aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorNicola Mettifogo2009-03-17 19:13:45 +0000
committerNicola Mettifogo2009-03-17 19:13:45 +0000
commitdc2002348d1aad230615accb7f4e93c0f40733d2 (patch)
tree525c045f553e958364183504e5c95c89ae4e87c8 /engines
parent3a98786bc0c1e36575702283a293c064df3e9da4 (diff)
downloadscummvm-rg350-dc2002348d1aad230615accb7f4e93c0f40733d2.tar.gz
scummvm-rg350-dc2002348d1aad230615accb7f4e93c0f40733d2.tar.bz2
scummvm-rg350-dc2002348d1aad230615accb7f4e93c0f40733d2.zip
Another explicit cast for a historic compiler.
svn-id: r39490
Diffstat (limited to 'engines')
-rw-r--r--engines/parallaction/parallaction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/parallaction.cpp b/engines/parallaction/parallaction.cpp
index c8b30068dc..4db09b7415 100644
--- a/engines/parallaction/parallaction.cpp
+++ b/engines/parallaction/parallaction.cpp
@@ -988,7 +988,7 @@ bool CharacterName::dummy() const {
void Parallaction::beep() {
_soundMan->execute(SC_SETSFXCHANNEL, 3);
_soundMan->execute(SC_SETSFXVOLUME, 127);
- _soundMan->execute(SC_SETSFXLOOPING, 0);
+ _soundMan->execute(SC_SETSFXLOOPING, (int)0);
_soundMan->execute(SC_PLAYSFX, "beep");
}