diff options
author | Nicola Mettifogo | 2008-12-07 12:47:14 +0000 |
---|---|---|
committer | Nicola Mettifogo | 2008-12-07 12:47:14 +0000 |
commit | b557c58d3bd0b0439c3c95075739feba9ac33207 (patch) | |
tree | 247559707761ac0a76325e0b6ad2b0eefe00ac18 | |
parent | db88c544b75daa213130092da1b4ef2d0f61ff22 (diff) | |
download | scummvm-rg350-b557c58d3bd0b0439c3c95075739feba9ac33207.tar.gz scummvm-rg350-b557c58d3bd0b0439c3c95075739feba9ac33207.tar.bz2 scummvm-rg350-b557c58d3bd0b0439c3c95075739feba9ac33207.zip |
Missing break statement caused many broken warning messages.
svn-id: r35271
-rw-r--r-- | engines/parallaction/input.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/parallaction/input.cpp b/engines/parallaction/input.cpp index fca1ea790b..08df4f9fe3 100644 --- a/engines/parallaction/input.cpp +++ b/engines/parallaction/input.cpp @@ -515,6 +515,7 @@ void Input::setInventoryCursor(ItemName name) { // FIXME: destination offseting is not clear _vm->_inventoryRenderer->drawItem(name, dst + _mouseComboProps_BR._yOffset * _mouseComboProps_BR._width + _mouseComboProps_BR._xOffset, _mouseComboProps_BR._width); _vm->_system->setMouseCursor(dst, _mouseComboProps_BR._width, _mouseComboProps_BR._height, 0, 0, 0); + break; } default: |