aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services
diff options
context:
space:
mode:
authormageven <62494521+mageven@users.noreply.github.com>2021-02-20 05:55:01 +0530
committerGitHub <noreply@github.com>2021-02-20 01:25:01 +0100
commit65eb9901f17f210aab467eabfc090c872c08755a (patch)
tree16d4522ea84fd5cc69d889bc6f12a50874811f0b /Ryujinx.HLE/HOS/Services
parentd9b3f3fa3aa3816f8c136ca5a5c7139331b9cbd7 (diff)
Allow modding AddOnContent RomFS (#2024)
Simplify some misc logic
Diffstat (limited to 'Ryujinx.HLE/HOS/Services')
-rw-r--r--Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs b/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs
index e29a040f..d108f95a 100644
--- a/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs
+++ b/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs
@@ -400,7 +400,7 @@ namespace Ryujinx.HLE.HOS.Services.Fs
{
Logger.Info?.Print(LogClass.Loader, $"Opened AddOnContent Data TitleID={titleId:X16}");
- MakeObject(context, new FileSystemProxy.IStorage(aocStorage));
+ MakeObject(context, new FileSystemProxy.IStorage(context.Device.FileSystem.ModLoader.ApplyRomFsMods((ulong)titleId, aocStorage)));
return ResultCode.Success;
}