DolphinQt: Add way to override "ResourcePack" folder that controls the location of resource packs

This commit is contained in:
iwubcode
2019-10-06 01:21:06 -05:00
parent 876a1ccc3e
commit 490fd0c3b3
7 changed files with 42 additions and 6 deletions

View File

@ -193,7 +193,7 @@ void ResourcePackManager::Install()
auto& item = ResourcePack::GetPacks()[GetResourcePackIndex(items[0])];
bool success = item.Install(File::GetUserPath(D_USER_IDX));
bool success = item.Install(File::GetUserPath(D_LOAD_IDX));
if (!success)
{
@ -214,7 +214,7 @@ void ResourcePackManager::Uninstall()
auto& item = ResourcePack::GetPacks()[GetResourcePackIndex(items[0])];
bool success = item.Uninstall(File::GetUserPath(D_USER_IDX));
bool success = item.Uninstall(File::GetUserPath(D_LOAD_IDX));
if (!success)
{