diff options
author | Eugene Sandulenko | 2013-07-15 11:51:57 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2013-07-15 11:51:57 +0300 |
commit | 059fa15d148018a01721205f824116a905a73ff1 (patch) | |
tree | 7c5a7f3d6b031aa22cd493852e1ef53f6b5bda3e /devtools | |
parent | e0e6b9538422a1129a06c5b38a56092d3ca1e583 (diff) | |
download | scummvm-rg350-059fa15d148018a01721205f824116a905a73ff1.tar.gz scummvm-rg350-059fa15d148018a01721205f824116a905a73ff1.tar.bz2 scummvm-rg350-059fa15d148018a01721205f824116a905a73ff1.zip |
DEVTOOLS: Fix CID 1022207. Missing break in switch
Diffstat (limited to 'devtools')
-rw-r--r-- | devtools/create_lure/process_actions.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/devtools/create_lure/process_actions.cpp b/devtools/create_lure/process_actions.cpp index db965730cb..d1ddbf03f2 100644 --- a/devtools/create_lure/process_actions.cpp +++ b/devtools/create_lure/process_actions.cpp @@ -149,6 +149,7 @@ uint16 process_action_sequence_entry(int supportIndex, byte *data, uint16 remain if (startOffset == 0x7328) { startOffset = 0x72ae; maxOffset = 0x7382; } if (startOffset == 0x702f) { startOffset = 0x6f3d; maxOffset = 0x70a3; } if (startOffset == 0x7886) { startOffset = 0x742a; maxOffset = 0x7896; } + break; case DE_DEU: if (startOffset == 0x7edb) { startOffset = 0x7ead; maxOffset = 0x7f05; } if (startOffset == 0x7ab8) { startOffset = 0x796c; maxOffset = 0x7ae2; } |