[Scummvm-git-logs] scummvm master -> fdb5db629842bea5081094529782da84ab93f616
sev-
sev at scummvm.org
Mon Dec 12 23:51:53 CET 2016
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
fdb5db6298 FULLPIPE: Fix warning
Commit: fdb5db629842bea5081094529782da84ab93f616
https://github.com/scummvm/scummvm/commit/fdb5db629842bea5081094529782da84ab93f616
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-12-12T23:51:34+01:00
Commit Message:
FULLPIPE: Fix warning
Changed paths:
engines/fullpipe/gameloader.cpp
diff --git a/engines/fullpipe/gameloader.cpp b/engines/fullpipe/gameloader.cpp
index 28e5f37..28a3964 100644
--- a/engines/fullpipe/gameloader.cpp
+++ b/engines/fullpipe/gameloader.cpp
@@ -612,7 +612,7 @@ Sc2::~Sc2() {
delete _entranceData[i];
free(_entranceData);
- for (uint i = 0; i < _picAniInfosCount; i++)
+ for (int i = 0; i < _picAniInfosCount; i++)
delete _picAniInfos[i];
free(_picAniInfos);
}
More information about the Scummvm-git-logs
mailing list