Skip to content

Commit

Permalink
ACCESS: Use a uint instead of a int in a loop based on size()
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed Dec 17, 2014
1 parent fe627c5 commit e141da2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/access/animation.cpp
Expand Up @@ -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];
}

Expand Down

0 comments on commit e141da2

Please sign in to comment.