mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 00:15:30 +00:00
Fixed warnings for msvc9.
svn-id: r31460
This commit is contained in:
parent
08f7059cf2
commit
b586235fb8
@ -555,7 +555,7 @@ bool AgiEngine::matchWord(void) {
|
||||
return false;
|
||||
}
|
||||
// Lookup word in the dictionary
|
||||
int line = 0, cmpRes, len;
|
||||
int line = 0, cmpRes = 0, len = 0;
|
||||
char target[MAXWORDLEN];
|
||||
|
||||
strncpy(target, _currentCode.c_str(), MAXWORDLEN);
|
||||
|
@ -780,7 +780,7 @@ void loadResourcesFromSave(Common::InSaveFile &fHandle, bool broken) {
|
||||
int8 isMask = 0, isSpl = 0;
|
||||
byte *dataPtr, *ptr;
|
||||
char *animName, part[256];
|
||||
byte transparentColor;
|
||||
byte transparentColor = 0;
|
||||
AnimData *currentPtr;
|
||||
AnimHeaderStruct animHeader;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user