Skip to content

Commit

Permalink
Changed correction to fix issue reported in #5326.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlemstra committed Jul 15, 2022
1 parent abaa4dc commit 9c90852
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions coders/dng.c
Expand Up @@ -423,10 +423,10 @@ static OrientationType LibRawFlipToOrientation(int flip)
{
switch(flip)
{
case 6:
case 5:
return(LeftBottomOrientation);
case 8:
return(RightTopOrientation);
return(LeftTopOrientation);
default:
return((OrientationType) flip);
}
Expand Down

0 comments on commit 9c90852

Please sign in to comment.