From 461bb5ae32b21ec1d1c3b997dacc0c79554bcd06 Mon Sep 17 00:00:00 2001 From: neauoire Date: Mon, 28 Mar 2022 11:51:15 -0700 Subject: [PATCH] Protect macros --- src/uxn11.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uxn11.c b/src/uxn11.c index 95a453f..705c9ec 100644 --- a/src/uxn11.c +++ b/src/uxn11.c @@ -22,8 +22,8 @@ static Window window; static Device *devscreen, *devctrl, *devmouse; -#define WIDTH 64 * 8 -#define HEIGHT 40 * 8 +#define WIDTH (64 * 8) +#define HEIGHT (40 * 8) static int error(char *msg, const char *err)