From fa1f8ab80874a2f820bdec0c0f45ac90c3b8b7de Mon Sep 17 00:00:00 2001 From: rINanDO Date: Sun, 1 May 2016 20:03:32 +0200 Subject: [PATCH] galaxys2-common: Camera: Fix front camera issues. Since this commit https://github.com/CyanogenMod/android_frameworks_base/commit/b47a1c5b2acec0fc12fcab98369faf340436467b the front camera doesn't work anymore because the SceneMode-property is NULL. Change-Id: I84ad5c0c0e67a98963a7515ed9973d8f8997eebc --- camera/exynos_camera.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/camera/exynos_camera.c b/camera/exynos_camera.c index 3261904..7aaf71e 100644 --- a/camera/exynos_camera.c +++ b/camera/exynos_camera.c @@ -175,8 +175,8 @@ struct exynos_camera_preset exynos_camera_presets_galaxys2[] = { .whitebalance = NULL, .whitebalance_values = NULL, - .scene_mode = NULL, - .scene_mode_values = NULL, + .scene_mode = "none", + .scene_mode_values = "none", .effect = NULL, .effect_values = NULL,