fix compile warning
svn-id: r18907
This commit is contained in:
parent
04d51b0402
commit
2ff464214b
2 changed files with 2 additions and 2 deletions
|
@ -572,7 +572,7 @@ public:
|
||||||
return isSaveListFull() ? _saveFilesCount : _saveFilesCount + 1;
|
return isSaveListFull() ? _saveFilesCount : _saveFilesCount + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool _framesEsc;
|
int16 _framesEsc;
|
||||||
|
|
||||||
uint32 _globalFlags;
|
uint32 _globalFlags;
|
||||||
byte _ethicsPoints[5]; // TODO: Verify that this is large enough
|
byte _ethicsPoints[5]; // TODO: Verify that this is large enough
|
||||||
|
|
|
@ -3029,7 +3029,7 @@ Engine *Engine_SCUMM_create(GameDetector *detector, OSystem *syst) {
|
||||||
const char *name = g->name;
|
const char *name = g->name;
|
||||||
char detectName[256], tempName[256], gameMD5[32+1];
|
char detectName[256], tempName[256], gameMD5[32+1];
|
||||||
uint8 md5sum[16];
|
uint8 md5sum[16];
|
||||||
int substLastIndex;
|
int substLastIndex = 0;
|
||||||
bool found = false;
|
bool found = false;
|
||||||
|
|
||||||
for (int method = 0; method < 5 && !found; method++) {
|
for (int method = 0; method < 5 && !found; method++) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue