From 26039169720b2c7031b096b0d451161047c4555f Mon Sep 17 00:00:00 2001 From: Samuel Walker Date: Sat, 1 Feb 2025 01:19:44 -0700 Subject: [PATCH] set constant types --- include/ppu.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/ppu.h b/include/ppu.h index 69605c5..101949f 100644 --- a/include/ppu.h +++ b/include/ppu.h @@ -2,10 +2,10 @@ #include -static const LINES_PER_FRAME = 154; -static const TICKS_PER_LINE = 456; -static const YRES = 144; -static const XRES = 160; +static const int LINES_PER_FRAME = 154; +static const int TICKS_PER_LINE = 456; +static const int YRES = 144; +static const int XRES = 160; typedef struct { u8 y;