diff options
author | Jan Schmidt <thaytan@noraisin.net> | 2009-05-14 10:34:08 +0100 |
---|---|---|
committer | Jan Schmidt <thaytan@noraisin.net> | 2009-05-14 11:28:15 +0100 |
commit | e62b64f1d34ec402f8fce4f91f174d40315576c9 (patch) | |
tree | afb3809e6f9e2db6d4a3363d91f6004eeeef3403 /ext/resindvd | |
parent | 13694cd654cef130bd97d2498f5e65e8da525722 (diff) | |
download | gst-plugins-bad-e62b64f1d34ec402f8fce4f91f174d40315576c9.tar.gz gst-plugins-bad-e62b64f1d34ec402f8fce4f91f174d40315576c9.tar.bz2 gst-plugins-bad-e62b64f1d34ec402f8fce4f91f174d40315576c9.zip |
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.
Diffstat (limited to 'ext/resindvd')
-rw-r--r-- | ext/resindvd/resindvdsrc.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/ext/resindvd/resindvdsrc.c b/ext/resindvd/resindvdsrc.c index bdf74ced..f24e45aa 100644 --- a/ext/resindvd/resindvdsrc.c +++ b/ext/resindvd/resindvdsrc.c @@ -2065,10 +2065,12 @@ rsn_dvdsrc_update_highlight (resinDvdSrc * src) btni_t *btn_info = pci->hli.btnit + button - 1; guint32 btn_mask; - GST_DEBUG_OBJECT (src, "Setting highlight. Button %d @ %d,%d " - "active %d palette 0x%x (from button %d @ %d,%d palette 0x%x)", - button, src->area.sx, src->area.sy, mode, src->area.palette, - src->active_button, area.sx, area.sy, area.palette); + GST_DEBUG_OBJECT (src, "Setting highlight. Button %d @ %d,%d,%d,%d " + "active %d palette 0x%x (from button %d @ %d,%d,%d,%d palette 0x%x)", + button, area.sx, area.sy, area.ex, area.ey, + 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)); |