aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs')
-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 37143a5aa..1b63f362e 100644
--- a/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs
+++ b/Ryujinx.HLE/HOS/Services/Fs/IFileSystemProxy.cs
@@ -808,7 +808,7 @@ namespace Ryujinx.HLE.HOS.Services.Fs
808 { 808 {
809 byte programIndex = context.RequestData.ReadByte(); 809 byte programIndex = context.RequestData.ReadByte();
810 810
811 if ((context.Device.Application.TitleId & 0xf) != programIndex) 811 if ((context.Device.Processes.ActiveApplication.ProgramId & 0xf) != programIndex)
812 { 812 {
813 throw new NotImplementedException($"Accessing storage from other programs is not supported (program index = {programIndex})."); 813 throw new NotImplementedException($"Accessing storage from other programs is not supported (program index = {programIndex}).");
814 } 814 }