diff options
author | Simon Howard | 2005-10-06 19:32:38 +0000 |
---|---|---|
committer | Simon Howard | 2005-10-06 19:32:38 +0000 |
commit | ba0fc6d909f3d30cb11d880d6f229ba194debab8 (patch) | |
tree | 5a02f95ffe2a2af4cb4aa5241f1de068dcdb51ff | |
parent | 6da59f6f7e7e1aa8797e810e819a01c5933ee41c (diff) | |
download | chocolate-doom-ba0fc6d909f3d30cb11d880d6f229ba194debab8.tar.gz chocolate-doom-ba0fc6d909f3d30cb11d880d6f229ba194debab8.tar.bz2 chocolate-doom-ba0fc6d909f3d30cb11d880d6f229ba194debab8.zip |
Allow changing the background flats in finale text screens via dehacked
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 165
-rw-r--r-- | src/f_finale.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/f_finale.c b/src/f_finale.c index 631578e4..56da7b1b 100644 --- a/src/f_finale.c +++ b/src/f_finale.c @@ -1,7 +1,7 @@ // Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // -// $Id: f_finale.c 160 2005-10-03 21:39:39Z fraggle $ +// $Id: f_finale.c 165 2005-10-06 19:32:38Z fraggle $ // // Copyright(C) 1993-1996 Id Software, Inc. // Copyright(C) 2005 Simon Howard @@ -22,6 +22,9 @@ // 02111-1307, USA. // // $Log$ +// Revision 1.5 2005/10/06 19:32:38 fraggle +// Allow changing the background flats in finale text screens via dehacked +// // Revision 1.4 2005/10/03 21:39:39 fraggle // Dehacked text substitutions // @@ -42,7 +45,7 @@ static const char -rcsid[] = "$Id: f_finale.c 160 2005-10-03 21:39:39Z fraggle $"; +rcsid[] = "$Id: f_finale.c 165 2005-10-06 19:32:38Z fraggle $"; #include <ctype.h> @@ -160,6 +163,7 @@ void F_StartFinale (void) // Do dehacked substitutions of strings finaletext = DEH_String(finaletext); + finaleflat = DEH_String(finaleflat); finalestage = 0; finalecount = 0; |