Skip to content

Commit cc5852d

Browse files
committed
Use same value from clear()
1 parent 9b4118a commit cc5852d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

exif.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ class EXIFInfo {
9494
std::string ImageDescription; // Image description
9595
std::string Make; // Camera manufacturer's name
9696
std::string Model; // Camera model
97-
unsigned short Orientation{1}; // Image orientation
97+
unsigned short Orientation{
98+
std::numeric_limits<unsigned short>::max()}; // Image orientation
9899
// 1: Horizontal (normal)
99100
// 2: Mirror horizontal
100101
// 3: Rotate 180

0 commit comments

Comments
 (0)