aboutsummaryrefslogtreecommitdiff
path: root/src/cell_explorer.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2017-09-22 13:37:54 +0200
committerThomas White <taw@physics.org>2017-09-22 13:37:54 +0200
commite07517ba5b579c757908ed0855ac6ee0e8f5cd3b (patch)
tree9f0b20acac51da0582cae0987f207168640e5b13 /src/cell_explorer.c
parent2c25695f9516beb5d27fd6a42696c4af1bec77b5 (diff)
cell_explorer: Also count cells excluded by the choice of indexing method
Diffstat (limited to 'src/cell_explorer.c')
-rw-r--r--src/cell_explorer.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/cell_explorer.c b/src/cell_explorer.c
index ed17c2cd..a8a8a7dc 100644
--- a/src/cell_explorer.c
+++ b/src/cell_explorer.c
@@ -657,9 +657,13 @@ static void scan_cells(CellWindow *w)
}
}
- if ( ignore ) continue;
+ if ( ignore ) {
+ n_excl++;
+ continue;
+ }
if ( cell_get_parameters(cells[i], &a, &b, &c, &al, &be, &ga) ) {
+ n_excl++;
continue;
}
a *= 1e10; b *= 1e10; c *= 1e10;