1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 19:25:25 +03:00
aports/testing/emulationstation/default-paths.patch
Taner Tas f6da323477 testing/emulationstation: new aport
https://github.com/RetroPie/EmulationStation
EmulationStation is a cross-platform graphical front-end for emulators with controller navigation.
2018-07-31 12:41:26 +00:00

22 lines
650 B
Diff

--- 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