summaryrefslogtreecommitdiff
path: root/atari/misc.c
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2013-01-16 03:21:35 +0100
committerOle Loots <ole@monochrom.net>2013-01-16 03:21:35 +0100
commit4f0ae4e12868ddf26e7018e0a3dec4badaa1b1b6 (patch)
tree4e9c63a447215553179dd4fe89e5c1cc7788442b /atari/misc.c
parent6a32f94cc22f26afa43bfb58688688ae704e5514 (diff)
downloadnetsurf-4f0ae4e12868ddf26e7018e0a3dec4badaa1b1b6.tar.gz
netsurf-4f0ae4e12868ddf26e7018e0a3dec4badaa1b1b6.tar.bz2
Search form inside browser windows starts to work.
Diffstat (limited to 'atari/misc.c')
-rwxr-xr-xatari/misc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/atari/misc.c b/atari/misc.c
index 21b636e2a..d339379db 100755
--- a/atari/misc.c
+++ b/atari/misc.c
@@ -512,8 +512,10 @@ void dbg_pxy(const char * str, short * pxy )
void dbg_rect(const char * str, int * pxy)
{
- printf("%s: x: %d, y: %d, w: %d, h: %d\n", str,
- pxy[0], pxy[1], pxy[2], pxy[3] );
+ printf("%s: x0: %d, y0: %d, x1: %d, y1: %d (w: %d, h: %d)\n", str,
+ pxy[0], pxy[1], pxy[2], pxy[3],
+ pxy[2] - pxy[0],
+ pxy[3] - pxy[1] );
}
/* some LDG functions here to reduce dependencies */