summaryrefslogtreecommitdiffstats
path: root/src/com/android/camera/Util.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/camera/Util.java')
-rw-r--r--src/com/android/camera/Util.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/camera/Util.java b/src/com/android/camera/Util.java
index c5de1f8..adf9152 100644
--- a/src/com/android/camera/Util.java
+++ b/src/com/android/camera/Util.java
@@ -298,7 +298,7 @@ public class Util {
new android.hardware.Camera.CameraInfo();
android.hardware.Camera.getCameraInfo(cameraId, info);
int degrees = getDisplayRotation(activity);
- int result = (info.mOrientation - degrees + 360) % 360;
+ int result = (info.orientation - degrees + 360) % 360;
camera.setDisplayOrientation(result);
}
}