make the window default to 720p

This commit is contained in:
Green Sky 2024-05-28 08:35:11 +02:00
parent 18db2e3aaa
commit b65b9b284b
No known key found for this signature in database

View File

@ -32,7 +32,7 @@ int main(int argc, char** argv) {
// more RAII
std::unique_ptr<SDL_Window, decltype(&SDL_DestroyWindow)> window {
SDL_CreateWindow("tomato", 640, 480, SDL_WINDOW_RESIZABLE),
SDL_CreateWindow("tomato", 1280, 720, SDL_WINDOW_RESIZABLE),
&SDL_DestroyWindow
};