Add support for setting app/DLC paths.

This commit is contained in:
Mr_Goldberg
2019-05-09 08:10:03 -04:00
parent fae4df7012
commit a36f6e8e68
8 changed files with 117 additions and 5 deletions

View File

@ -184,3 +184,13 @@ bool Settings::getDLC(unsigned int index, AppId_t &appID, bool &available, std::
name = DLCs[index].name;
return true;
}
void Settings::setAppInstallPath(AppId_t appID, std::string path)
{
app_paths[appID] = path;
}
std::string Settings::getAppInstallPath(AppId_t appID)
{
return app_paths[appID];
}