shithub: choc

Download patch

ref: 82123dacf8eb687c67f2c0bbacaa536a773aa7eb
parent: 80746e7900d91688eba6c2a3f8bb1164bdb3de73
author: Simon Howard <fraggle@gmail.com>
date: Sat Mar 10 00:40:12 EST 2007

Ignore the HOME environment variable on Windows - just behave like
Vanilla Doom.

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

--- a/setup/configfile.c
+++ b/setup/configfile.c
@@ -80,6 +80,10 @@
 
 void M_SetConfigDir(void)
 {
+#ifndef _WIN32
+    // Ignore the HOME environment variable on Windows - just behave
+    // like Vanilla Doom.
+
     char *homedir;
 
     homedir = getenv("HOME");
@@ -98,6 +102,7 @@
         M_MakeDirectory(configdir);
     }
     else
+#endif /* #ifndef _WIN32 */
     {
 #ifdef _WIN32
         // when given the -cdrom option, save config+savegames in 
--- a/src/m_misc.c
+++ b/src/m_misc.c
@@ -705,6 +705,10 @@
 
 void M_SetConfigDir(void)
 {
+#ifndef _WIN32
+    // Ignore the HOME environment variable on Windows - just behave
+    // like Vanilla Doom.
+
     char *homedir;
 
     homedir = getenv("HOME");
@@ -724,6 +728,7 @@
         M_MakeDirectory(configdir);
     }
     else
+#endif /* #ifndef _WIN32 */
     {
 #ifdef _WIN32
         //!