mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
resindvd: Fix the argument order in a debug statement
Make the debug statement correctly show the 'old' and 'new' button coordinates, instead of the wrong way around.
This commit is contained in:
parent
13694cd654
commit
e62b64f1d3
1 changed files with 6 additions and 4 deletions
|
@ -2065,10 +2065,12 @@ rsn_dvdsrc_update_highlight (resinDvdSrc * src)
|
||||||
btni_t *btn_info = pci->hli.btnit + button - 1;
|
btni_t *btn_info = pci->hli.btnit + button - 1;
|
||||||
guint32 btn_mask;
|
guint32 btn_mask;
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (src, "Setting highlight. Button %d @ %d,%d "
|
GST_DEBUG_OBJECT (src, "Setting highlight. Button %d @ %d,%d,%d,%d "
|
||||||
"active %d palette 0x%x (from button %d @ %d,%d palette 0x%x)",
|
"active %d palette 0x%x (from button %d @ %d,%d,%d,%d palette 0x%x)",
|
||||||
button, src->area.sx, src->area.sy, mode, src->area.palette,
|
button, area.sx, area.sy, area.ex, area.ey,
|
||||||
src->active_button, area.sx, area.sy, area.palette);
|
mode, area.palette,
|
||||||
|
src->active_button, src->area.sx, src->area.sy, src->area.ex,
|
||||||
|
src->area.ey, src->area.palette);
|
||||||
|
|
||||||
memcpy (&(src->area), &area, sizeof (dvdnav_highlight_area_t));
|
memcpy (&(src->area), &area, sizeof (dvdnav_highlight_area_t));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue