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

Commit 50210b9a authored by Mathias Agopian's avatar Mathias Agopian
Browse files

fix a typo that broke all screenshots

Bug: 8450197

Change-Id: I5b986cc0ff9c5e689d06a51ba68ab537d03d1f3d
parent 0188eeff
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);