summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xatari/misc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/atari/misc.c b/atari/misc.c
index fa8ace9c6..ded8723fb 100755
--- a/atari/misc.c
+++ b/atari/misc.c
@@ -363,6 +363,12 @@ void dbg_pxy( 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 )
+{
+ printf("%s: x: %d, y: %d, w: %d, h: %d\n", str,
+ pxy[0], pxy[1], pxy[2], pxy[3] );
}
/* some LDG functions here to reduce dependencies */