ACCESS: Use a uint instead of a int in a loop based on size()

This commit is contained in:
Strangerke 2014-12-17 21:39:26 +01:00
parent fe627c5ce1
commit e141da25e8

View file

@ -78,7 +78,7 @@ Animation::Animation(AccessEngine *vm, Common::SeekableReadStream *stream) : Man
}
Animation::~Animation() {
for (int i = 0; i < (int)_frames.size(); ++i)
for (uint i = 0; i < _frames.size(); ++i)
delete _frames[i];
}