aboutsummaryrefslogtreecommitdiffstats
path: root/testing/emulationstation/default-paths.patch
blob: d150ba19c640d987076c373473d5e9766207e096 (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
@@ -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