diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-02-14 01:12:59 +0100 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2020-02-18 11:21:47 -0800 |
commit | 6c69f9c48e29376f16965f6e8ea9e1d01f368950 (patch) | |
tree | ca08fc5fc00447754d1e965f0d932bc4a714d8cf | |
parent | 5646bca36efe97a072550b783f62c7a164fe6ceb (diff) | |
download | qemu-6c69f9c48e29376f16965f6e8ea9e1d01f368950.zip |
hw/display/artist: Remove pointless initialization
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>
-rw-r--r-- | hw/display/artist.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/display/artist.c b/hw/display/artist.c index abacb0e27d..47f0e9f0bc 100644 --- a/hw/display/artist.c +++ b/hw/display/artist.c @@ -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; |