aboutsummaryrefslogtreecommitdiff
path: root/src/image.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-06-02 14:19:25 +0200
committerThomas White <taw@physics.org>2010-06-02 14:19:25 +0200
commit58b6ae91c195b88604373dfb61c54b49ab6e3ddb (patch)
treed654e420233f9835c054e9e5e4b1667483966f89 /src/image.h
parent09336f631b1e420ccf8809413e7811092d509724 (diff)
Bad pixel mask is actually 16 bits
Diffstat (limited to 'src/image.h')
-rw-r--r--src/image.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/image.h b/src/image.h
index e3a520ca..0ca16745 100644
--- a/src/image.h
+++ b/src/image.h
@@ -81,7 +81,7 @@ struct reflhit {
struct image {
float *data;
- uint8_t *flags;
+ uint16_t *flags;
double *twotheta;
UnitCell *indexed_cell;
UnitCell *candidate_cells[MAX_CELL_CANDIDATES];