set constant types

This commit is contained in:
Samuel Walker 2025-02-01 01:19:44 -07:00
parent f4cbfd09c8
commit 2603916972
Signed by: piwalker
GPG Key ID: 616B1928705EA4C9

View File

@ -2,10 +2,10 @@
#include <common.h> #include <common.h>
static const LINES_PER_FRAME = 154; static const int LINES_PER_FRAME = 154;
static const TICKS_PER_LINE = 456; static const int TICKS_PER_LINE = 456;
static const YRES = 144; static const int YRES = 144;
static const XRES = 160; static const int XRES = 160;
typedef struct { typedef struct {
u8 y; u8 y;