Skip to content

Commit

Permalink
AURORA: it++ -> ++it
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMcCoy committed Mar 19, 2013
1 parent 13a2943 commit 57608c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aurora/pefile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ Common::SeekableReadStream *PEFile::getResource(uint32 index) const {
void PEFile::load(const std::vector<Common::UString> &remap) {
std::vector<Common::PEResourceID> cursorList = _peFile->getNameList(Common::kPEGroupCursor);

for (std::vector<Common::PEResourceID>::const_iterator it = cursorList.begin(); it != cursorList.end(); it++) {
for (std::vector<Common::PEResourceID>::const_iterator it = cursorList.begin(); it != cursorList.end(); ++it) {
Resource res;

if (it->getID() == 0xFFFFFFFF)
Expand Down

0 comments on commit 57608c2

Please sign in to comment.