Skip to content

Commit

Permalink
Get rid of unsequenced modification. Fixes #126
Browse files Browse the repository at this point in the history
  • Loading branch information
Kingcom committed Mar 10, 2018
1 parent ad21eab commit 1fd4e2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Archs/MIPS/PsxRelocator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ std::vector<PsxLibEntry> loadPsxLibrary(const std::wstring& inputName)

while (input[pos+skip] != 0)
{
skip += input[pos+skip++];
skip += 1+input[pos+skip];
}

skip++;
Expand Down

0 comments on commit 1fd4e2c

Please sign in to comment.