Ticket #3148: gob-vc80-warnings.diff
File gob-vc80-warnings.diff, 1.8 KB (added by , 16 years ago) |
---|
-
imd.cpp
961 961 } 962 962 963 963 void ImdPlayer::seekFrame(Imd *imdPtr, int16 frame, int16 from, bool restart) { 964 uint32 framePos ;964 uint32 framePos = 0; 965 965 966 966 if (!imdPtr) 967 967 return; -
inter_v1.cpp
2217 2217 } 2218 2218 2219 2219 bool Inter_v1::o1_readData(OpFuncParams ¶ms) { 2220 int16 retSize ;2220 int16 retSize = 0; 2221 2221 int16 size; 2222 2222 int16 dataVar; 2223 2223 int16 offset; -
inter_v2.cpp
1814 1814 } 1815 1815 1816 1816 bool Inter_v2::o2_readData(OpFuncParams ¶ms) { 1817 int32 retSize ;1817 int32 retSize = 0; 1818 1818 int32 size; 1819 1819 int32 offset; 1820 1820 int16 dataVar; … … 2017 2017 int16 id; 2018 2018 int16 slot; 2019 2019 uint16 slotIdMask; 2020 uint32 dataSize ;2020 uint32 dataSize = 0; 2021 2021 SoundType type; 2022 2022 SoundSource source; 2023 2023 -
inter_v3.cpp
715 715 int16 totTextItem; 716 716 int16 part, curPart = 0; 717 717 int16 offX = 0, offY = 0; 718 int16 collId , collCmd;718 int16 collId = 0, collCmd; 719 719 uint32 stringStartVar, stringVar; 720 720 bool end; 721 721 -
util.cpp
82 82 void Util::processInput(bool scroll) { 83 83 Common::Event event; 84 84 Common::EventManager *eventMan = g_system->getEventManager(); 85 int16 x , y;85 int16 x = 0, y = 0; 86 86 bool hasMove = false; 87 87 88 88 while (eventMan->pollEvent(event)) {