We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
SDL_WINDOW_MAXIMIZED
1 parent f4a391b commit 8ccbe2bCopy full SHA for 8ccbe2b
src/sdl/methods.c
@@ -29,7 +29,7 @@ int startGameBySDL(TGame* pGame, int maxGeneration, int delayBetweenGenerations)
29
char windowCaption[256];
30
int windowWidth = cellSize * (pGame->cols + 2);
31
int windowHeight = cellSize * (pGame->rows + 2);
32
- Uint32 windowFlags = SDL_WINDOW_SHOWN | SDL_WINDOW_RESIZABLE | SDL_WINDOW_MAXIMIZED;
+ Uint32 windowFlags = SDL_WINDOW_SHOWN | SDL_WINDOW_RESIZABLE;
33
34
// SDL initialization
35
if (SDL_Init(SDL_INIT_VIDEO) != 0) {
0 commit comments