How to remove the title bar, let me know which file to edit it, thank you
diff --git a/app/src/screen.c b/app/src/screen.c
index 18d24dd..34ba467 100644
--- a/app/src/screen.c
+++ b/app/src/screen.c
@@ -152,6 +152,8 @@ screen_init_rendering(struct screen *screen, const char *window_title,
#endif
}
+ window_flags |= SDL_WINDOW_BORDERLESS;
+
screen->window = SDL_CreateWindow(window_title, SDL_WINDOWPOS_UNDEFINED,
SDL_WINDOWPOS_UNDEFINED,
window_size.width, window_size.height,
i want after removing the border it will look like in this image, still doing as you say, thank you
sorry for using google translate
If you apply the patch I just provided (just add the SDL_WINDOW_BORDERLESS flag), this is what you will get.
If you apply the patch I just provided (just add the
SDL_WINDOW_BORDERLESSflag), this is what you will get.
Thanks, I'll do it on Ubuntu
Most helpful comment
If you apply the patch I just provided (just add the
SDL_WINDOW_BORDERLESSflag), this is what you will get.