commit 09d9990a62373a7da9449339871520ae3c3b2565
parent 77edd1dbbf1d9a14208b452ec0b1d408c694155f
Author: Devine Lu Linvega <aliceffekt@gmail.com>
Date: Thu, 4 May 2023 20:45:52 -0700
(screen) Fixes warnings
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git 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;