diff options
| author | Matthias Melcher <git@matthiasm.com> | 2018-12-29 01:19:51 +0100 |
|---|---|---|
| committer | Matthias Melcher <git@matthiasm.com> | 2018-12-29 01:19:51 +0100 |
| commit | 29fe0c43df7bad2df0f4445994b9d5d851bc2cdb (patch) | |
| tree | ddb2017b80092d90d1e4bbce873ecee1550c9c84 /test/blocks.cxx | |
| parent | e169b1941fb1b3cfb8333ec27ab8f04671850ab9 (diff) | |
Remove obsolete condition to make static analysis happy.
Diffstat (limited to 'test/blocks.cxx')
| -rw-r--r-- | test/blocks.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/blocks.cxx b/test/blocks.cxx index c7d3979ed..6135313ba 100644 --- a/test/blocks.cxx +++ b/test/blocks.cxx @@ -771,7 +771,7 @@ int BlockWindow::handle(int event) { b = 0; for (j = 0, c = columns_; !count && j < num_columns_; j ++, c ++) - for (k = 0, b = c->blocks; !count && k < c->num_blocks; k ++, b ++) + for (k = 0, b = c->blocks; k < c->num_blocks; k ++, b ++) if (mx >= c->x && mx < (c->x + BLOCK_SIZE) && my >= b->y && my < (b->y + BLOCK_SIZE)) { if (b->bomb) count = bomb(b->color); |
