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

Commit 74ff6103 authored by Stephen Hines's avatar Stephen Hines
Browse files

Make launchtestxlw use constant.

Change-Id: I0f9cd3cc2f042a9471ecf1df9e4764cad8ad5ef6
parent bc82c349
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -22,8 +22,8 @@ uint8_t *buf;

void root(uchar *v_out, uint32_t x) {
    uint8_t *p = buf;
    p += x * 2048;
    for (int i=0; i<2048; i++) {
    p += x * dim;
    for (int i=0; i<dim; i++) {
        p[i] = 1;
    }
}