From 09d9990a62373a7da9449339871520ae3c3b2565 Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Thu, 4 May 2023 20:45:52 -0700 Subject: [PATCH] (screen) Fixes warnings --- src/devices/screen.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/devices/screen.h b/src/devices/screen.h index 70bd2bd..ab3d688 100644 --- a/src/devices/screen.h +++ b/src/devices/screen.h @@ -11,7 +11,8 @@ WITH REGARD TO THIS SOFTWARE. */ typedef struct UxnScreen { - Uint32 palette[4], *pixels, width, height, x1, y1, x2, y2; + int width, height, x1, y1, x2, y2; + Uint32 palette[4], *pixels; Uint8 *fg, *bg; } UxnScreen;