summarylogtreecommitdiffstats
path: root/0001-Fix-soundfont-search-path.patch
diff options
context:
space:
mode:
Diffstat (limited to '0001-Fix-soundfont-search-path.patch')
-rw-r--r--0001-Fix-soundfont-search-path.patch15
1 files changed, 10 insertions, 5 deletions
diff --git a/0001-Fix-soundfont-search-path.patch b/0001-Fix-soundfont-search-path.patch
index 4477a58ca58f..55b948c6870c 100644
--- a/0001-Fix-soundfont-search-path.patch
+++ b/0001-Fix-soundfont-search-path.patch
@@ -1,17 +1,17 @@
-From 8ff9b58295be9920534069344380e9f4d3c8b732 Mon Sep 17 00:00:00 2001
+From 6a33dc9c7d85f5974a0d7bad6f376099c52507be Mon Sep 17 00:00:00 2001
From: Jan Cholasta <jan@cholasta.net>
Date: Mon, 5 Mar 2018 16:17:24 +0100
Subject: [PATCH] Fix soundfont search path
---
- src/gameconfigfile.cpp | 1 +
- 1 file changed, 1 insertion(+)
+ src/gameconfigfile.cpp | 2 ++
+ 1 file changed, 2 insertions(+)
diff --git a/src/gameconfigfile.cpp b/src/gameconfigfile.cpp
-index c2655c359..f429fdbeb 100644
+index c2655c359..caa221cfe 100644
--- a/src/gameconfigfile.cpp
+++ b/src/gameconfigfile.cpp
-@@ -181,6 +181,7 @@ FGameConfigFile::FGameConfigFile ()
+@@ -181,10 +181,12 @@ FGameConfigFile::FGameConfigFile ()
SetValueForKey("Path", "$PROGDIR/soundfonts", true);
#else
SetValueForKey("Path", "$HOME/" GAME_DIR "/soundfonts", true);
@@ -19,6 +19,11 @@ index c2655c359..f429fdbeb 100644
SetValueForKey("Path", "/usr/local/share/doom/soundfonts", true);
SetValueForKey("Path", "/usr/local/share/games/doom/soundfonts", true);
SetValueForKey("Path", "/usr/share/doom/soundfonts", true);
+ SetValueForKey("Path", "/usr/share/games/doom/soundfonts", true);
++ SetValueForKey("Path", "/usr/share/soundfonts", true);
+ #endif
+ }
+
--
2.16.2