Skip to content

Commit

Permalink
Fix for #4447 (support for Fuji X-A10)
Browse files Browse the repository at this point in the history
  • Loading branch information
agriggio committed Mar 20, 2018
1 parent 33a24bb commit 7096c96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rtengine/dcraw.cc
Expand Up @@ -9262,8 +9262,8 @@ void CLASS identify()
} else if (load_raw != &CLASS packed_load_raw)
maximum = (is_raw == 2 && shot_select) ? 0x2f00 : 0x3e00;
if (!strncmp(model,"X-A10",5)) {
raw_width = 4912;
raw_height = 3278;
width = raw_width = 4912;
height = raw_height = 3278;
}
top_margin = (raw_height - height) >> 2 << 1;
left_margin = (raw_width - width ) >> 2 << 1;
Expand Down

0 comments on commit 7096c96

Please sign in to comment.