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

Commit 22ff4ef0 authored by Patrick Dubroy's avatar Patrick Dubroy
Browse files

Fix build break due to additional arg in Bitmap ctor

parent 982b71bf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -364,6 +364,6 @@ public class Bitmap_Delegate {
        int nativeInt = sManager.addDelegate(delegate);

        // and create/return a new Bitmap with it
        return new Bitmap(nativeInt, isMutable, null /*ninePatchChunk*/, density);
        return new Bitmap(nativeInt, null /* buffer */, isMutable, null /*ninePatchChunk*/, density);
    }
}