1
0
Fork 0

Fix syntax error in e2ea84541f

This commit is contained in:
wangqr 2020-07-17 12:47:06 -04:00 committed by arch1t3cht
parent 57841a0a34
commit d75e49653a
1 changed files with 2 additions and 2 deletions

View File

@ -305,7 +305,7 @@ namespace {
#define CHECK_EXISTS_POS check_exists(pos, x, y, lrud, lab, tolerance)
do {
pos -= 2;
} while (pos >= 0 && !CHECK_EXISTS_POS)
} while (pos >= 0 && CHECK_EXISTS_POS);
pos++;
pos = std::max(0, pos);
auto left = CHECK_EXISTS_POS ? pos : pos + 1;
@ -313,7 +313,7 @@ namespace {
pos = current_n_frame;
do {
pos += 2;
} while (pos < n_frames && !CHECK_EXISTS_POS)
} while (pos < n_frames && CHECK_EXISTS_POS);
pos--;
pos = std::min(pos, n_frames - 1);
auto right = CHECK_EXISTS_POS ? pos : pos - 1;