diff options
author | Strangerke | 2013-04-19 00:50:25 +0200 |
---|---|---|
committer | Strangerke | 2013-04-19 00:51:00 +0200 |
commit | 6de13b475e51d429dcf30c983e575289fb0901db (patch) | |
tree | 03401b2f320baf7e819ff03dbdaee78018a72e65 /engines/hopkins | |
parent | 02d81911cd10763166a7b9e58e86a396e44e52ab (diff) | |
download | scummvm-rg350-6de13b475e51d429dcf30c983e575289fb0901db.tar.gz scummvm-rg350-6de13b475e51d429dcf30c983e575289fb0901db.tar.bz2 scummvm-rg350-6de13b475e51d429dcf30c983e575289fb0901db.zip |
HOPKINS: Fix missing break in ScriptManager. CID 1003759
Diffstat (limited to 'engines/hopkins')
-rw-r--r-- | engines/hopkins/script.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/hopkins/script.cpp b/engines/hopkins/script.cpp index b27546778f..941f23442d 100644 --- a/engines/hopkins/script.cpp +++ b/engines/hopkins/script.cpp @@ -1067,6 +1067,7 @@ int ScriptManager::handleOpcode(const byte *dataP) { _vm->_soundMan->playWav(2); playFl = true; } + break; case 6: playFl = false; break; |