aboutsummaryrefslogtreecommitdiffstats
path: root/testing/emulationstation/default-paths.patch
diff options
context:
space:
mode:
authorTaner Tas <taner76@gmail.com>2018-07-27 18:56:59 +0300
committerNatanael Copa <ncopa@alpinelinux.org>2018-07-31 12:41:26 +0000
commitf6da3234771aba91daeb20415e8d89d71fa1bb8b (patch)
treef6b790e79ada72c3837ebdd32ee86fcb2590c284 /testing/emulationstation/default-paths.patch
parent177614ea29fe0b3df11039d73420c36da15e4352 (diff)
downloadaports-f6da3234771aba91daeb20415e8d89d71fa1bb8b.tar.bz2
aports-f6da3234771aba91daeb20415e8d89d71fa1bb8b.tar.xz
testing/emulationstation: new aport
https://github.com/RetroPie/EmulationStation EmulationStation is a cross-platform graphical front-end for emulators with controller navigation.
Diffstat (limited to 'testing/emulationstation/default-paths.patch')
-rw-r--r--testing/emulationstation/default-paths.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/emulationstation/default-paths.patch b/testing/emulationstation/default-paths.patch
new file mode 100644
index 0000000000..d150ba19c6
--- /dev/null
+++ b/testing/emulationstation/default-paths.patch
@@ -0,0 +1,22 @@
+--- a/es-core/src/ThemeData.cpp
++++ b/es-core/src/ThemeData.cpp
+@@ -538,7 +538,7 @@
+
+ static const size_t pathCount = 2;
+ fs::path paths[pathCount] = {
+- "/etc/emulationstation/themes",
++ "/usr/share/emulationstation/themes",
+ getHomePath() + "/.emulationstation/themes"
+ };
+
+--- a/es-app/src/SystemData.cpp
++++ b/es-app/src/SystemData.cpp
+@@ -397,7 +397,7 @@
+ if(forWrite || fs::exists(filePath))
+ return filePath.generic_string();
+
+- return "/etc/emulationstation/gamelists/" + mName + "/gamelist.xml";
++ return "/usr/share/emulationstation/gamelists/" + mName + "/gamelist.xml";
+ }
+
+ std::string SystemData::getThemePath() const