mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
(Android) Changed the theme directory parsing order
This commit is contained in:
parent
c5caab290e
commit
458560bcd9
|
@ -728,9 +728,9 @@ void ThemeData::populateThemes()
|
|||
#endif
|
||||
|
||||
#if defined(__ANDROID__)
|
||||
const std::vector<std::string> themePaths {
|
||||
Utils::FileSystem::getProgramDataPath() + "/themes", userThemeDirectory,
|
||||
Utils::FileSystem::getAppDataDirectory() + "/themes"};
|
||||
const std::vector<std::string> themePaths {Utils::FileSystem::getProgramDataPath() + "/themes",
|
||||
Utils::FileSystem::getAppDataDirectory() + "/themes",
|
||||
userThemeDirectory};
|
||||
#elif defined(__APPLE__)
|
||||
const std::vector<std::string> themePaths {
|
||||
Utils::FileSystem::getExePath() + "/themes",
|
||||
|
|
Loading…
Reference in a new issue