diff --git a/src/Draw.c b/src/Draw.c index 859d7ce..8f1c2d7 100644 --- a/src/Draw.c +++ b/src/Draw.c @@ -196,6 +196,9 @@ int Draw_Init(const int width, const int height, const char *title, const int pF Print("\tSDL Error: %s\n", SDL_GetError()); return (0); } + + SDL_SetWindowAlwaysOnTop(g_Window, SDL_TRUE); + g_GLContext = SDL_GL_CreateContext(g_Window); g_Renderer = SDL_CreateRenderer(g_Window, -1, SDL_RENDERER_ACCELERATED | SDL_RENDERER_TARGETTEXTURE);