From e37af0d28b2bf9a6308c8743139c715f8bdbdec1 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Tue, 16 Aug 2022 07:21:55 -0400 Subject: [PATCH] Make default window size 800x600 --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index e89b0fe..661eb49 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -242,8 +242,8 @@ int main(int, char*[]) { SDL_Window* window = SDL_CreateWindow("raytracer", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, - 640, - 480, + 800, + 600, SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE); SDL_GLContext gl_context = SDL_GL_CreateContext(window);