From acadd716f837cc0894b0153cacd9534833d19e6c Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Thu, 24 Jun 2021 20:47:14 +1000 Subject: [PATCH] - For Unix systems, ensure that the root of the player's .config directory is scanned for content, not just subdirectories. * Fixes #430. --- source/core/gameconfigfile.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/core/gameconfigfile.cpp b/source/core/gameconfigfile.cpp index 582508017..9f5fc4eeb 100644 --- a/source/core/gameconfigfile.cpp +++ b/source/core/gameconfigfile.cpp @@ -95,6 +95,7 @@ FGameConfigFile::FGameConfigFile () SetValueForKey ("Path", "$PROGDIR", true); SetValueForKey ("Path", "$PROGDIR/*", true); #else + SetValueForKey ("Path", "$HOME/" GAME_DIR, true); SetValueForKey ("Path", "$HOME/" GAME_DIR "/*", true); // Arch Linux likes them in /usr/share/raze // Debian likes them in /usr/share/games/raze