mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
https://github.com/RetroPie/EmulationStation EmulationStation is a cross-platform graphical front-end for emulators with controller navigation.
22 lines
650 B
Diff
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
|