diff options
author | Gregory Montoir | 2004-09-19 13:43:01 +0000 |
---|---|---|
committer | Gregory Montoir | 2004-09-19 13:43:01 +0000 |
commit | 0ae51c06f0a54108c701240257dd0aceca7aca53 (patch) | |
tree | aac9b867a103740d9fd3118e538eb792613375a4 | |
parent | 680b7ecd510c3934bb28a61b5ca134554fc90e6e (diff) | |
download | scummvm-rg350-0ae51c06f0a54108c701240257dd0aceca7aca53.tar.gz scummvm-rg350-0ae51c06f0a54108c701240257dd0aceca7aca53.tar.bz2 scummvm-rg350-0ae51c06f0a54108c701240257dd0aceca7aca53.zip |
add missing break
svn-id: r15190
-rw-r--r-- | queen/logic.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/queen/logic.cpp b/queen/logic.cpp index 8c76b02511..02d23cf28d 100644 --- a/queen/logic.cpp +++ b/queen/logic.cpp @@ -1255,6 +1255,7 @@ void Logic::handlePinnacleRoom() { for (int i = 0; i < ARRAYSIZE(cmds); ++i) { if (cmds[i].obj == prevObj) { _vm->sound()->playSong(cmds[i].song); + break; } } |