Skip to content

Commit 277b187

Browse files
Fix Exif.NikonFl7.FlashGroupBCControlData output
1 parent b3ca98c commit 277b187

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nikonmn_int.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2959,7 +2959,7 @@ fmountlens[] = {
29592959
oss.copyfmt(os);
29602960
long temp = value.toLong();
29612961

2962-
printTag<EXV_COUNTOF(nikonFlashControlMode), nikonFlashControlMode>(os, (temp & 0xf0), data);
2962+
printTag<EXV_COUNTOF(nikonFlashControlMode), nikonFlashControlMode>(os, (temp >> 4), data);
29632963
os << ", ";
29642964
printTag<EXV_COUNTOF(nikonFlashControlMode), nikonFlashControlMode>(os, (temp & 0x0f), data);
29652965

0 commit comments

Comments
 (0)