]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
hw/display/artist: Remove pointless initialization
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Fri, 14 Feb 2020 00:12:59 +0000 (01:12 +0100)
committerRichard Henderson <richard.henderson@linaro.org>
Tue, 18 Feb 2020 19:21:47 +0000 (11:21 -0800)
We are initializating incy inconditionally:

    if (y1 <= y2) {
        incy = 1;
    } else {
        incy = -1;
    }

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Acked-by: Sven Schnelle <svens@stackframe.org>
Message-Id: <20200214001303.12873-3-f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
hw/display/artist.c

index abacb0e27d473e20b8b55ee67c59363c84361c3b..47f0e9f0bc933a2802c0b8df4d890fc88025ccf9 100644 (file)
@@ -572,7 +572,6 @@ static void draw_line(ARTISTState *s, int x1, int y1, int x2, int y2,
     buf = &s->vram_buffer[ARTIST_BUFFER_AP];
 
     c1 = false;
-    incy = 1;
 
     if (x2 > x1) {
         dx = x2 - x1;