mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
DolphinQt: Add way to override "ResourcePack" folder that controls the location of resource packs
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user