commit | 50210b9a8d19cb90fc283d8d99e46cd34ac17d2e | [log] [tgz] |
---|---|---|
author | Mathias Agopian <mathias@google.com> | Thu Mar 21 21:13:21 2013 -0700 |
committer | Mathias Agopian <mathias@google.com> | Thu Mar 21 21:14:10 2013 -0700 |
tree | 243653511b455de4404a227539afa78192ee5661 | |
parent | 0188eeff1fecc3813ddb236be3e2b7a9ad156482 [diff] [blame] |
fix a typo that broke all screenshots Bug: 8450197 Change-Id: I5b986cc0ff9c5e689d06a51ba68ab537d03d1f3d
diff --git a/services/surfaceflinger/SurfaceFlinger.cpp b/services/surfaceflinger/SurfaceFlinger.cpp index 2d84c54..8149a6e 100644 --- a/services/surfaceflinger/SurfaceFlinger.cpp +++ b/services/surfaceflinger/SurfaceFlinger.cpp
@@ -110,7 +110,7 @@ char value[PROPERTY_VALUE_MAX]; property_get("ro.bq.gpu_to_cpu_unsupported", value, "0"); - mGpuToCpuSupported = !!atoi(value); + mGpuToCpuSupported = !atoi(value); property_get("debug.sf.showupdates", value, "0"); mDebugRegion = atoi(value);