summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRocky Bernstein <rockyb@users.sourceforge.net>2005-06-26 05:20:29 +0000
committerRocky Bernstein <rockyb@users.sourceforge.net>2005-06-26 05:20:29 +0000
commit43ad2bb30990587a42434f7cd631fdfcc8c95e1b (patch)
treeb7f9a43138aee988e262e4997d989d1394329328
parent7e9859c5702f2c02da58292d7295c428dc4520c0 (diff)
downloadxine-lib-43ad2bb30990587a42434f7cd631fdfcc8c95e1b.tar.gz
xine-lib-43ad2bb30990587a42434f7cd631fdfcc8c95e1b.tar.bz2
Better debugging aid so we can figure out area better.
CVS patchset: 7634 CVS date: 2005/06/26 05:20:29
-rw-r--r--src/input/vcd/xineplug_inp_vcd.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/input/vcd/xineplug_inp_vcd.c b/src/input/vcd/xineplug_inp_vcd.c
index 73df9da44..e3c11e09b 100644
--- a/src/input/vcd/xineplug_inp_vcd.c
+++ b/src/input/vcd/xineplug_inp_vcd.c
@@ -1,5 +1,5 @@
/*
- $Id: xineplug_inp_vcd.c,v 1.41 2005/06/20 02:17:41 rockyb Exp $
+ $Id: xineplug_inp_vcd.c,v 1.42 2005/06/26 05:20:29 rockyb Exp $
Copyright (C) 2002, 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>
@@ -1177,8 +1177,11 @@ vcd_handle_events (void)
{
int i_selection;
- dbg_print(INPUT_DBG_EVENT, "Button to x: %d, y: %d\n",
- p_input->x, p_input->y);
+ dbg_print(INPUT_DBG_EVENT,
+ "Button to x: %d, y: %d, scaled x: %d, scaled y %d\n",
+ p_input->x, p_input->y,
+ p_input->x * 255 / p_vcdplayer->max_x,
+ p_input->y * 255 / p_vcdplayer->max_y);
#if LIBVCD_VERSION_NUM >= 23
/* xine_dvd_send_button_update(this, 1); */