hwc: Correct default value of dynThreshold

Change-Id: I18aefe755334cb62e43fc2c39cc42fb0fcbadef1
This commit is contained in:
Steve Kondik 2012-09-05 12:32:28 -07:00 committed by Andrew Sutherland
parent e7e5ddbba9
commit ddd0b7498d

View File

@ -63,7 +63,7 @@ void initContext(hwc_context_t *ctx)
//system property can override this value
ctx->dynThreshold = 2.0;
property_get("debug.hwc.dynThreshold", value, "3");
property_get("debug.hwc.dynThreshold", value, "2");
ctx->dynThreshold = atof(value);
ALOGI("Initializing Qualcomm Hardware Composer");