Skip to content

Commit

Permalink
fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
ianmaclarty committed Jan 23, 2016
1 parent 2d24da5 commit e2c7513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/am_spritepack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ static int try_pack() {
}

static void replace_backslashes(char *str) {
for (int i = 0; i < strlen(str); i++) {
for (unsigned int i = 0; i < strlen(str); i++) {
if (str[i] == '\\') str[i] = '/';
}
}
Expand Down

0 comments on commit e2c7513

Please sign in to comment.