From bba3e9d15be261da1d800ff0f3ae79dfb2966c4b Mon Sep 17 00:00:00 2001 From: Edgaru089 Date: Tue, 2 Apr 2024 09:08:10 +0800 Subject: [PATCH] Use 1600x900 resolution Remember to change that in final submission --- types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types.h b/types.h index 13a43f1..16148a0 100644 --- a/types.h +++ b/types.h @@ -11,8 +11,8 @@ extern "C" { #endif -#define SCREEN_WIDTH 1280 -#define SCREEN_HEIGHT 720 +#define SCREEN_WIDTH 1600 +#define SCREEN_HEIGHT 900 #define WARN(fmt, ...) fprintf(stderr, "[WARN][%s] " fmt "\n", __func__, __VA_ARGS__)