mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-18 18:58:55 +02: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