summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wallace <greg@gregtwallace.com>2015-11-08 19:54:25 +0100
committerEthan Yonker <dees_troy@teamw.in>2015-12-23 19:30:24 +0100
commit36ade45b1bfb69272d6a2f190ef5570d4da9310a (patch)
treebddbb433466fdf235edb0ecdbd786df7db0c1e96
parentChanged off_t to loff_t (diff)
downloadandroid_bootable_recovery-36ade45b1bfb69272d6a2f190ef5570d4da9310a.tar
android_bootable_recovery-36ade45b1bfb69272d6a2f190ef5570d4da9310a.tar.gz
android_bootable_recovery-36ade45b1bfb69272d6a2f190ef5570d4da9310a.tar.bz2
android_bootable_recovery-36ade45b1bfb69272d6a2f190ef5570d4da9310a.tar.lz
android_bootable_recovery-36ade45b1bfb69272d6a2f190ef5570d4da9310a.tar.xz
android_bootable_recovery-36ade45b1bfb69272d6a2f190ef5570d4da9310a.tar.zst
android_bootable_recovery-36ade45b1bfb69272d6a2f190ef5570d4da9310a.zip
-rw-r--r--Android.mk3
-rw-r--r--data.cpp20
2 files changed, 21 insertions, 2 deletions
diff --git a/Android.mk b/Android.mk
index c57e8dc10..059879687 100644
--- a/Android.mk
+++ b/Android.mk
@@ -299,6 +299,9 @@ endif
ifneq ($(TW_MAX_BRIGHTNESS),)
LOCAL_CFLAGS += -DTW_MAX_BRIGHTNESS=$(TW_MAX_BRIGHTNESS)
endif
+ifneq ($(TW_DEFAULT_BRIGHTNESS),)
+ LOCAL_CFLAGS += -DTW_DEFAULT_BRIGHTNESS=$(TW_DEFAULT_BRIGHTNESS)
+endif
ifneq ($(TW_CUSTOM_BATTERY_PATH),)
LOCAL_CFLAGS += -DTW_CUSTOM_BATTERY_PATH=$(TW_CUSTOM_BATTERY_PATH)
endif
diff --git a/data.cpp b/data.cpp
index 629b4c895..5cca3a102 100644
--- a/data.cpp
+++ b/data.cpp
@@ -865,8 +865,24 @@ void DataManager::SetDefaultValues()
LOGINFO("Specified secondary brightness file '%s' not found.\n", secondfindbright.c_str());
}
#endif
- string max_bright = maxVal.str();
- TWFunc::Set_Brightness(max_bright);
+#ifdef TW_DEFAULT_BRIGHTNESS
+ int defValInt = TW_DEFAULT_BRIGHTNESS;
+ int maxValInt = TW_MAX_BRIGHTNESS;
+ // Deliberately int so the % is always a whole number
+ int defPctInt = ( ( (double)defValInt / maxValInt ) * 100 );
+ ostringstream defPct;
+ defPct << defPctInt;
+ mValues.erase("tw_brightness_pct");
+ mValues.insert(make_pair("tw_brightness_pct", make_pair(defPct.str(), 1)));
+
+ ostringstream defVal;
+ defVal << TW_DEFAULT_BRIGHTNESS;
+ mValues.erase("tw_brightness");
+ mValues.insert(make_pair("tw_brightness", make_pair(defVal.str(), 1)));
+ TWFunc::Set_Brightness(defVal.str());
+#else
+ TWFunc::Set_Brightness(maxVal.str());
+#endif
}
#endif
mValues.insert(make_pair(TW_MILITARY_TIME, make_pair("0", 1)));