CUSTOM_CAPTION can be configured (used in pentagonal exploration)

This commit is contained in:
Zeno Rogue 2018-09-03 16:33:01 +02:00
parent 4c01859192
commit 6b43a7972f
1 changed files with 5 additions and 1 deletions

View File

@ -1097,8 +1097,12 @@ void initgraph() {
vid.xscr = vid.xres = inf->current_w;
vid.yscr = vid.yres = inf->current_h;
#endif
#ifdef CUSTOM_CAPTION
SDL_WM_SetCaption(CUSTOM_CAPTION, CUSTOM_CAPTION);
#else
SDL_WM_SetCaption("HyperRogue " VER, "HyperRogue " VER);
#endif
#endif
preparesort();