mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 17:16:44 +02:00
provide resources in /usr/share/emulationstation/resources load resources from /usr/share/emulationstation/resources set CMAKE_INSTALL_PREFIX rebuild against boost 1.84
11 lines
360 B
Diff
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;
|
|
|