Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eb2680c5 authored by Mathias Agopian's avatar Mathias Agopian Committed by Android Git Automerger
Browse files

am 30e5376b: am 50210b9a: fix a typo that broke all screenshots

* commit '30e5376b':
  fix a typo that broke all screenshots
parents 28bc3028 30e5376b
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -110,7 +110,7 @@ SurfaceFlinger::SurfaceFlinger()
    char value[PROPERTY_VALUE_MAX];
    char value[PROPERTY_VALUE_MAX];


    property_get("ro.bq.gpu_to_cpu_unsupported", value, "0");
    property_get("ro.bq.gpu_to_cpu_unsupported", value, "0");
    mGpuToCpuSupported = !!atoi(value);
    mGpuToCpuSupported = !atoi(value);


    property_get("debug.sf.showupdates", value, "0");
    property_get("debug.sf.showupdates", value, "0");
    mDebugRegion = atoi(value);
    mDebugRegion = atoi(value);