Ticket #9120: gob_uninitialized_variable_warnings.patch
File gob_uninitialized_variable_warnings.patch, 792 bytes (added by , 15 years ago) |
---|
-
engines/gob/draw.cpp
815 815 } 816 816 817 817 int16 Draw::handleCurWin() { 818 int8 matchNum ;818 int8 matchNum = 0; 819 819 int16 bestMatch = -1; 820 820 821 821 warning("handleCurWin"); -
engines/gob/hotspots.cpp
1606 1606 int16 Hotspots::findCursor(uint16 x, uint16 y) const { 1607 1607 int16 cursor = 0; 1608 1608 1609 int16 deltax ;1610 int16 deltay ;1609 int16 deltax = 0; 1610 int16 deltay = 0; 1611 1611 1612 1612 if ( _vm->getGameType() == kGameTypeFascination ) { 1613 1613 cursor = curWindow(deltax, deltay);