From bb67f6d0a2dfcb4b4995fc9c373a6c879b19ee95 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Wed, 2 Feb 2011 02:11:15 +0000 Subject: [PATCH] - Add ~/.zdoom as a default path in [FileSearch.Directories] on Unix systems. SVN r3131 (trunk) --- src/gameconfigfile.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gameconfigfile.cpp b/src/gameconfigfile.cpp index 53b30e02a..726031f6d 100644 --- a/src/gameconfigfile.cpp +++ b/src/gameconfigfile.cpp @@ -154,6 +154,7 @@ FGameConfigFile::FGameConfigFile () #elif !defined(unix) SetValueForKey ("Path", "$PROGDIR", true); #else + SetValueForKey ("Path", "~/" GAME_DIR, true); SetValueForKey ("Path", SHARE_DIR, true); #endif SetValueForKey ("Path", "$DOOMWADDIR", true);