From 59e2775055ac4cd4a42b1ff510b1255e17afdfbb Mon Sep 17 00:00:00 2001 From: Ole Loots Date: Mon, 3 Dec 2012 00:07:47 +0100 Subject: Implemented basic mouse input to browser component (click). --- atari/misc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'atari/misc.c') diff --git a/atari/misc.c b/atari/misc.c index 22f820eb6..f12556b63 100755 --- a/atari/misc.c +++ b/atari/misc.c @@ -502,19 +502,19 @@ void dbg_lgrect( char * str, LGRECT * r ) r->g_x, r->g_y, r->g_w, r->g_h ); } -void dbg_grect( char * str, GRECT * 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 ); } -void dbg_pxy( char * str, short * pxy ) +void dbg_pxy(const char * str, short * pxy ) { printf("%s: x: %d, y: %d, w: %d, h: %d\n", str, pxy[0], pxy[1], pxy[2], pxy[3] ); } -void dbg_rect( char * str, int * 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] ); -- cgit v1.2.3