aports/testing/emulationstation/default-paths.patch

22 lines
669 B
Diff

--- a/es-core/src/ThemeData.cpp
+++ b/es-core/src/ThemeData.cpp
@@ -582,7 +582,7 @@
static const size_t pathCount = 2;
std::string paths[pathCount] =
{
- "/etc/emulationstation/themes",
+ "/usr/share/emulationstation/themes",
Utils::FileSystem::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