diff options
author | Simon Howard | 2013-09-20 23:08:46 +0000 |
---|---|---|
committer | Simon Howard | 2013-09-20 23:08:46 +0000 |
commit | f1d79f495d4ad394c87d7fc11132c120736658fa (patch) | |
tree | 5b2bb6e2a47957d78997b264178b7b10561fda04 | |
parent | 2abeaa31ee536faefb640bf5d1cf3bbf421464ab (diff) | |
download | chocolate-doom-f1d79f495d4ad394c87d7fc11132c120736658fa.tar.gz chocolate-doom-f1d79f495d4ad394c87d7fc11132c120736658fa.tar.bz2 chocolate-doom-f1d79f495d4ad394c87d7fc11132c120736658fa.zip |
Set a title on the ENDOOM window.
Subversion-branch: /branches/v2-branch
Subversion-revision: 2668
-rw-r--r-- | src/i_endoom.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/i_endoom.c b/src/i_endoom.c index 09c2d2d2..f3fa1cb2 100644 --- a/src/i_endoom.c +++ b/src/i_endoom.c @@ -26,6 +26,7 @@ #include <stdio.h> #include <string.h> +#include "config.h" #include "doomtype.h" #include "i_video.h" @@ -47,6 +48,7 @@ void I_Endoom(byte *endoom_data) // Set up text mode screen TXT_Init(); + TXT_SetWindowTitle(PACKAGE_STRING); // Write the data to the screen memory |