From 8073c2af18a0988c3eb9bebaea90b9d837d6cf50 Mon Sep 17 00:00:00 2001 From: Jeffery Myers Date: Tue, 31 Mar 2026 10:01:22 -0700 Subject: [PATCH] default to a size that works on 720p monitors --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 0f6a14b..0cafd2e 100644 --- a/src/main.c +++ b/src/main.c @@ -17,7 +17,7 @@ int main () SetConfigFlags(FLAG_VSYNC_HINT | FLAG_WINDOW_HIGHDPI); // Create the window and OpenGL context - InitWindow(1280, 800, "Hello Raylib"); + InitWindow(800, 600, "Hello Raylib"); // Utility function from resource_dir.h to find the resources folder and set it as the current working directory so we can load from it SearchAndSetResourceDir("resources");