mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-01-07 06:29:26 +01:00
Removed case sensitivity from launcher files/names.
This commit is contained in:
parent
3d69bd65a7
commit
d4fe8972a1
@ -55,6 +55,7 @@ bool Launcher::run(std::string collection, Item *collectionItem)
|
||||
launcherName = line;
|
||||
}
|
||||
}
|
||||
launcherName = Utils::toLower(launcherName);
|
||||
|
||||
if(!launcherExecutable(executablePath, launcherName))
|
||||
{
|
||||
|
||||
@ -167,7 +167,7 @@ bool ImportConfiguration(Configuration *c)
|
||||
|
||||
if(extension == ".conf")
|
||||
{
|
||||
std::string prefix = "launchers." + basename;
|
||||
std::string prefix = "launchers." + Utils::toLower(basename);
|
||||
|
||||
std::string importFile = Utils::combinePath(launchersPath, std::string(dirp->d_name));
|
||||
|
||||
|
||||
@ -21,7 +21,7 @@
|
||||
|
||||
std::string retrofe_version_major = "0";
|
||||
std::string retrofe_version_minor = "9";
|
||||
std::string retrofe_version_build = "40";
|
||||
std::string retrofe_version_build = "41";
|
||||
|
||||
|
||||
std::string Version::getString( )
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user