diff options
author | Stefan Hajnoczi | 2017-05-08 18:43:15 +0200 |
---|---|---|
committer | Stefan Hajnoczi | 2017-05-08 18:43:22 +0200 |
commit | 2fd463854cbf7e649ef9c9be86d2694b5d4a53e3 (patch) | |
tree | 44434ec9da33254e3faca7546099ffc56fc36397 /hw/display/tcx.c | |
parent | maintainers: add maintainer for replay* files (diff) | |
parent | cg3: add explicit ram_addr_t cast to scanline page variable (diff) | |
download | qemu-2fd463854cbf7e649ef9c9be86d2694b5d4a53e3.tar.gz qemu-2fd463854cbf7e649ef9c9be86d2694b5d4a53e3.tar.xz qemu-2fd463854cbf7e649ef9c9be86d2694b5d4a53e3.zip |
Merge remote-tracking branch 'mcayland/tags/qemu-sparc-signed' into staging
qemu-sparc update
# gpg: Signature made Fri 05 May 2017 04:51:46 AM EDT
# gpg: using RSA key 0x5BC2C56FAE0F321F
# gpg: Good signature from "Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>"
# Primary key fingerprint: CC62 1AB9 8E82 200D 915C C9C4 5BC2 C56F AE0F 321F
* mcayland/tags/qemu-sparc-signed:
cg3: add explicit ram_addr_t cast to scanline page variable
tcx: fix cut/paste error in update_palette_entries()
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'hw/display/tcx.c')
-rw-r--r-- | hw/display/tcx.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/display/tcx.c b/hw/display/tcx.c index 5a1115cc65..0e66dcd055 100644 --- a/hw/display/tcx.c +++ b/hw/display/tcx.c @@ -145,7 +145,6 @@ static void update_palette_entries(TCXState *s, int start, int end) } else { s->palette[i] = rgb_to_pixel32(s->r[i], s->g[i], s->b[i]); } - break; } tcx_set_dirty(s, 0, memory_region_size(&s->vram_mem)); } |