aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/mouse.cpp
diff options
context:
space:
mode:
authorstrangerke2011-04-20 22:22:01 +0200
committerstrangerke2011-04-20 22:22:01 +0200
commitc15b858765e9ad606c8e84bdf48744957983a49a (patch)
tree18509de59bfe84418f26b5815a65593274639507 /engines/hugo/mouse.cpp
parent3fee10eb604d31aa731362404fc7eaa080032642 (diff)
downloadscummvm-rg350-c15b858765e9ad606c8e84bdf48744957983a49a.tar.gz
scummvm-rg350-c15b858765e9ad606c8e84bdf48744957983a49a.tar.bz2
scummvm-rg350-c15b858765e9ad606c8e84bdf48744957983a49a.zip
HUGO: Silent several warnings reported by littleboy
Diffstat (limited to 'engines/hugo/mouse.cpp')
-rw-r--r--engines/hugo/mouse.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/hugo/mouse.cpp b/engines/hugo/mouse.cpp
index 1b2dd588b8..e8926b17c4 100644
--- a/engines/hugo/mouse.cpp
+++ b/engines/hugo/mouse.cpp
@@ -363,6 +363,7 @@ void MouseHandler::readHotspot(Common::ReadStream &in, hotspot_t &hotspot) {
void MouseHandler::loadHotspots(Common::ReadStream &in) {
hotspot_t *wrkHotspots = 0;
hotspot_t tmp;
+ memset(&tmp, 0, sizeof(tmp));
for (int varnt = 0; varnt < _vm->_numVariant; varnt++) {
int numRows = in.readUint16BE();
if (varnt == _vm->_gameVariant)