Browse code

(screen) Fixes warnings

Devine Lu Linvega authored on 05/05/2023 03:45:52
Showing 1 changed files
... ...
@@ -11,7 +11,8 @@ WITH REGARD TO THIS SOFTWARE.
11 11
 */
12 12
 
13 13
 typedef struct UxnScreen {
14
-	Uint32 palette[4], *pixels, width, height, x1, y1, x2, y2;
14
+	int width, height, x1, y1, x2, y2;
15
+	Uint32 palette[4], *pixels;
15 16
 	Uint8 *fg, *bg;
16 17
 } UxnScreen;
17 18