aports/testing/emulationstation/30-resource.patch
Holger Jaekel 6c4c32a4bf testing/emulationstation: fix build with musl 1.2.5
provide resources in /usr/share/emulationstation/resources
load resources from /usr/share/emulationstation/resources
set CMAKE_INSTALL_PREFIX
rebuild against boost 1.84
2024-05-21 16:13:08 +00:00

11 lines
360 B
Diff

--- a/es-core/src/resources/ResourceManager.cpp
+++ b/es-core/src/resources/ResourceManager.cpp
@@ -33,7 +33,7 @@
return test;
// check in exepath
- test = Utils::FileSystem::getExePath() + "/resources/" + &path[2];
+ test = std::string("/usr/share/emulationstation/resources/") + &path[2];
if(Utils::FileSystem::exists(test))
return test;