foxygit / doom Log in
commit b4082e71fc70f9295952b8c8c5cd77b85d602671
Author:     Simon Howard <fraggle@gmail.com>
AuthorDate: Thu Aug 31 18:13:23 2006 +0000
Commit:     Simon Howard <fraggle@gmail.com>
CommitDate: Thu Aug 31 18:13:23 2006 +0000

    Check for 'ff_end' not 'ff_start' when displaying warning message about
    merging flats. Some old Vanilla WADs used ff_start..f_end to add extra
    flats and this message should not be displayed for them. Use American
    spelling of 'behavior'.

    Subversion-branch: /trunk/chocolate-doom
    Subversion-revision: 582
---
 src/d_main.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/d_main.c b/src/d_main.c
index 499e23ff..9e74eb3b 100644
--- a/src/d_main.c
+++ b/src/d_main.c
@@ -1,7 +1,7 @@
 // Emacs style mode select   -*- C++ -*-
 //-----------------------------------------------------------------------------
 //
-// $Id: d_main.c 563 2006-06-29 09:05:54Z fraggle $
+// $Id: d_main.c 582 2006-08-31 18:13:23Z fraggle $
 //
 // Copyright(C) 1993-1996 Id Software, Inc.
 // Copyright(C) 2005 Simon Howard
@@ -184,7 +184,7 @@
 //-----------------------------------------------------------------------------


-static const char rcsid[] = "$Id: d_main.c 563 2006-06-29 09:05:54Z fraggle $";
+static const char rcsid[] = "$Id: d_main.c 582 2006-08-31 18:13:23Z fraggle $";

 #define	BGCOLOR		7
 #define	FGCOLOR		8
@@ -1479,7 +1479,7 @@ void PrintGameVersion(void)
     {
         if (gameversions[i].version == gameversion)
         {
-            printf("Emulating the behaviour of the "
+            printf("Emulating the behavior of the "
                    "'%s' executable.\n", gameversions[i].description);
             break;
         }
@@ -1813,7 +1813,7 @@ void D_DoomMain (void)
         novert = false;

     if (W_CheckNumForName("SS_START") >= 0
-     || W_CheckNumForName("FF_START") >= 0)
+     || W_CheckNumForName("FF_END") >= 0)
     {
         printf ("===========================================================================\n");
         printf(" WARNING: The loaded WAD file contains modified sprites or\n"