aboutsummaryrefslogtreecommitdiffstats
path: root/testing/emulationstation/default-paths.patch
blob: 82bd226f30975442983dde792973241d3cd87a04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- 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