summaryrefslogtreecommitdiff
path: root/atari/misc.c
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2012-12-04 01:32:43 +0100
committerOle Loots <ole@monochrom.net>2012-12-04 01:32:43 +0100
commit25db04a890e7493998abede078c6e0cc7a7fd734 (patch)
tree07680062fe1d79acde38d3b7b96ddd2f7caae8c8 /atari/misc.c
parent2c5b24d717613211ea4d9c805c19c12436397ec0 (diff)
downloadnetsurf-25db04a890e7493998abede078c6e0cc7a7fd734.tar.gz
netsurf-25db04a890e7493998abede078c6e0cc7a7fd734.tar.bz2
Dragged scrolling/mouse click events works fine now.
Diffstat (limited to 'atari/misc.c')
-rwxr-xr-xatari/misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/atari/misc.c b/atari/misc.c
index f12556b63..60678dc59 100755
--- a/atari/misc.c
+++ b/atari/misc.c
@@ -504,8 +504,8 @@ void dbg_lgrect( char * str, LGRECT * r )
void dbg_grect(const char * str, GRECT * r)
{
- printf("%s: x: %d, y: %d, w: %d, h: %d\n", str,
- r->g_x, r->g_y, r->g_w, r->g_h );
+ printf("%s: x: %d, y: %d, w: %d, h: %d (x2: %d, y2: %d)\n", str,
+ r->g_x, r->g_y, r->g_w, r->g_h, r->g_x + r->g_w, r->g_y + r->g_h);
}
void dbg_pxy(const char * str, short * pxy )