shithub: choc

Download patch

ref: dcd1a6c3a4b692e0fa905075ef38273f85c138f4
parent: a0ce233f505cecf8a9e5235dcfddf3e78a2231c6
author: Simon Howard <[email protected]>
date: Tue May 17 18:06:22 EDT 2011

Detect chex.deh if it is in the same directory as the IWAD file.

Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 2340

--- a/NEWS
+++ b/NEWS
@@ -24,6 +24,8 @@
        the setup tool, which will appear in the main menu on desktop
        environments such as Gnome and KDE (thanks Adrián Chaves
        Fernández).
+     * The Chex Quest dehacked patch (chex.deh) will now be detected
+       if it is in the same directory as the IWAD file.
 
     Compatibility:
      * Added support for the alternate version of the Final Doom
--- a/src/d_main.c
+++ b/src/d_main.c
@@ -777,11 +777,37 @@
 
 static void LoadChexDeh(void)
 {
-    char *chex_deh;
+    char *chex_deh = NULL;
+    char *sep;
 
     if (gameversion == exe_chex)
     {
-        chex_deh = D_FindWADByName("chex.deh");
+        // Look for chex.deh in the same directory as the IWAD file.
+
+        sep = strrchr(iwadfile, DIR_SEPARATOR);
+
+        if (sep != NULL)
+        {
+            chex_deh = malloc(strlen(iwadfile) + 9);
+            strcpy(chex_deh, iwadfile);
+            chex_deh[sep - iwadfile + 1] = '\0';
+            strcat(chex_deh, "chex.deh");
+        }
+        else
+        {
+            chex_deh = strdup("chex.deh");
+        }
+
+        // If the dehacked patch isn't found, try searching the WAD
+        // search path instead.  We might find it...
+
+        if (!M_FileExists(chex_deh))
+        {
+            free(chex_deh);
+            chex_deh = D_FindWADByName("chex.deh");
+        }
+
+        // Still not found?
 
         if (chex_deh == NULL)
         {