shithub: choc

Download patch

ref: 1344aa973b8fac5a3d32425d571699290d391c7f
parent: 076c8400e60bc4d3b8746f1d0fe4fdce90a31c02
author: Simon Howard <[email protected]>
date: Fri Dec 5 20:57:34 EST 2014

textscreen: Change default window title.

Just set this to the empty string.

--- a/textscreen/txt_sdl.c
+++ b/textscreen/txt_sdl.c
@@ -246,8 +246,7 @@
     // some systems nowadays don't seem to support true 8-bit palettized
     // screen modes very well and we end up with screwed up colors.
     TXT_SDLWindow =
-        SDL_CreateWindow("libtextscreen",
-                         SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED,
+        SDL_CreateWindow("", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED,
                          TXT_SCREEN_W * font->w, TXT_SCREEN_H * font->h,
                          0);