aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Ryujinx.Core/OsHle/Services/Nv/ServiceNvDrv.cs21
1 files changed, 16 insertions, 5 deletions
diff --git a/Ryujinx.Core/OsHle/Services/Nv/ServiceNvDrv.cs b/Ryujinx.Core/OsHle/Services/Nv/ServiceNvDrv.cs
index 6774a3d0..e314169b 100644
--- a/Ryujinx.Core/OsHle/Services/Nv/ServiceNvDrv.cs
+++ b/Ryujinx.Core/OsHle/Services/Nv/ServiceNvDrv.cs
@@ -389,11 +389,22 @@ namespace Ryujinx.Core.OsHle.Services.Nv
MemReader Reader = new MemReader(Context.Memory, Position);
- int ColorDs = Reader.ReadInt32();
- int ColorL2 = Reader.ReadInt32();
- int Depth = Reader.ReadInt32();
- int Format = Reader.ReadInt32();
- int Type = Reader.ReadInt32();
+ int[] ColorDs = new int[4];
+ int[] ColorL2 = new int[4];
+
+ ColorDs[0] = Reader.ReadInt32();
+ ColorDs[1] = Reader.ReadInt32();
+ ColorDs[2] = Reader.ReadInt32();
+ ColorDs[3] = Reader.ReadInt32();
+
+ ColorL2[0] = Reader.ReadInt32();
+ ColorL2[1] = Reader.ReadInt32();
+ ColorL2[2] = Reader.ReadInt32();
+ ColorL2[3] = Reader.ReadInt32();
+
+ int Depth = Reader.ReadInt32();
+ int Format = Reader.ReadInt32();
+ int Type = Reader.ReadInt32();
return 0;
}