From 8420c81d52cd20055a38e18e609905ac282e7384 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sigrid=20Solveig=20Hafl=C3=ADnud=C3=B3ttir?= Date: Sun, 12 Mar 2023 02:39:20 +0100 Subject: [PATCH] system.h: no need to redefine the same macro --- src/devices/system.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/devices/system.h b/src/devices/system.h index 6fc31e1..87923e0 100644 --- a/src/devices/system.h +++ b/src/devices/system.h @@ -10,7 +10,6 @@ WITH REGARD TO THIS SOFTWARE. */ #define RAM_PAGES 0x10 -#define PEEK16(d) ((d)[0] << 8 | (d)[1]) int system_load(Uxn *u, char *filename); void system_deo(Uxn *u, Uint8 *d, Uint8 port);