diff options
author | Simon Howard | 2008-12-10 00:42:49 +0000 |
---|---|---|
committer | Simon Howard | 2008-12-10 00:42:49 +0000 |
commit | aed280e13947099544f584077e9cd893ddeaf9e5 (patch) | |
tree | 291382277cca084f2ee937b25b2f3566f5844078 /src | |
parent | b22df6a13aedecce1818c41eb38b265b066f3eda (diff) | |
download | chocolate-doom-aed280e13947099544f584077e9cd893ddeaf9e5.tar.gz chocolate-doom-aed280e13947099544f584077e9cd893ddeaf9e5.tar.bz2 chocolate-doom-aed280e13947099544f584077e9cd893ddeaf9e5.zip |
Set icon before calling TXT_Init, for setup and ENDOOM screens.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1416
Diffstat (limited to 'src')
-rw-r--r-- | src/i_system.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/i_system.c b/src/i_system.c index fe596a60..282000ed 100644 --- a/src/i_system.c +++ b/src/i_system.c @@ -139,15 +139,15 @@ void I_Endoom(void) endoom_data = W_CacheLumpName(DEH_String("ENDOOM"), PU_STATIC); - // Set up text mode screen - - TXT_Init(); - // Make sure the new window has the right title and icon I_SetWindowCaption(); I_SetWindowIcon(); + // Set up text mode screen + + TXT_Init(); + // Write the data to the screen memory screendata = TXT_GetScreenData(); |