Skip to content

Commit

Permalink
thcrap_tasofro: pl: bugfix: put a parenthesis at the right place
Browse files Browse the repository at this point in the history
  • Loading branch information
brliron committed Jan 1, 2018
1 parent 6c38c88 commit 45b391b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thcrap_tasofro/src/pl.cpp
Expand Up @@ -33,7 +33,7 @@ void TasofroPl::readField(const char *in, size_t& pos, size_t size, std::string&
if (game_id >= TH155) {
// Keep the old behavior for older games because I don't want to break things
if ((pos >= 1 && in[pos - 1] == '@') ||
(pos >= 2 && in[pos - 1] == '\r') && in[pos - 2] == '@') {
(pos >= 2 && in[pos - 1] == '\r' && in[pos - 2] == '@')) {
continue;
}
}
Expand Down

0 comments on commit 45b391b

Please sign in to comment.