mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 19:49:43 +00:00
vnc-enc-tight: fix Arguments in wrong order
Arguments in wrong order (SWAPPED_ARGUMENTS) The positions of arguments in the call to tight_fill_palette do not match the ordering of the parameters: &fg is passed to bg &bg is passed to fg Cc: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Gonglei <arei.gonglei@huawei.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
45e1611de8
commit
525965b85d
@ -1489,7 +1489,7 @@ static int send_sub_rect(VncState *vs, int x, int y, int w, int h)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
colors = tight_fill_palette(vs, x, y, w * h, &fg, &bg, &palette);
|
colors = tight_fill_palette(vs, x, y, w * h, &bg, &fg, &palette);
|
||||||
|
|
||||||
#ifdef CONFIG_VNC_JPEG
|
#ifdef CONFIG_VNC_JPEG
|
||||||
if (allow_jpeg && vs->tight.quality != (uint8_t)-1) {
|
if (allow_jpeg && vs->tight.quality != (uint8_t)-1) {
|
||||||
|
Loading…
Reference in New Issue
Block a user