(screen) Fixes warnings

This commit is contained in:
Devine Lu Linvega 2023-05-04 20:45:52 -07:00
parent 77edd1dbbf
commit 09d9990a62
1 changed files with 2 additions and 1 deletions

View File

@ -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;