From 6548104b96be211b1c93412a05802cc821b1d2e0 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Wed, 17 Apr 2013 08:13:19 +0200 Subject: HUGO: Fix Uninitialized scalar variables --- engines/hugo/mouse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/hugo/mouse.cpp b/engines/hugo/mouse.cpp index a95170696c..ae286c8afb 100644 --- a/engines/hugo/mouse.cpp +++ b/engines/hugo/mouse.cpp @@ -169,7 +169,7 @@ void MouseHandler::processRightClick(const int16 objId, const int16 cx, const in _vm->_object->useObject(objId); // Use status.objid on object } else { // Clicked over viewport object Object *obj = &_vm->_object->_objects[objId]; - int16 x, y; + int16 x = 0, y = 0; switch (obj->_viewx) { // Where to walk to case -1: // Walk to object position if (_vm->_object->findObjectSpace(obj, &x, &y)) -- cgit v1.2.3