fix a typo that broke all screenshots

Bug: 8450197

Change-Id: I5b986cc0ff9c5e689d06a51ba68ab537d03d1f3d
This commit is contained in:
Mathias Agopian 2013-03-21 21:13:21 -07:00
parent 0188eeff1f
commit 50210b9a8d
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ SurfaceFlinger::SurfaceFlinger()
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);