mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
Sparc32: remove dead increment, spotted by clang
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
f368a3cea4
commit
f7e683b8c3
1 changed files with 1 additions and 1 deletions
2
hw/tcx.c
2
hw/tcx.c
|
@ -161,7 +161,7 @@ static inline void tcx24_draw_line32(TCXState *s1, uint8_t *d,
|
|||
p8++;
|
||||
b = *p8++;
|
||||
g = *p8++;
|
||||
r = *p8++;
|
||||
r = *p8;
|
||||
if (bgr)
|
||||
dval = rgb_to_pixel32bgr(r, g, b);
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue