mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 00:06:39 +00:00
Fix DisplayInfo struct (#2708)
This commit is contained in:
parent
fff48bb45a
commit
11b437eafc
2 changed files with 3 additions and 4 deletions
|
@ -6,7 +6,7 @@ namespace Ryujinx.HLE.HOS.Services.Vi.RootService.ApplicationDisplayService.Type
|
|||
[StructLayout(LayoutKind.Sequential, Size = 0x60)]
|
||||
struct DisplayInfo
|
||||
{
|
||||
public Array40<byte> Name;
|
||||
public Array64<byte> Name;
|
||||
public bool LayerLimitEnabled;
|
||||
public Array7<byte> Padding;
|
||||
public ulong LayerLimitMax;
|
||||
|
|
|
@ -34,7 +34,7 @@ namespace Ryujinx.HLE.HOS.Services.Vi.RootService
|
|||
{
|
||||
DisplayInfo displayInfo = new DisplayInfo()
|
||||
{
|
||||
Name = new Array40<byte>(),
|
||||
Name = new Array64<byte>(),
|
||||
LayerLimitEnabled = layerLimitEnabled,
|
||||
Padding = new Array7<byte>(),
|
||||
LayerLimitMax = layerLimitMax,
|
||||
|
@ -123,8 +123,7 @@ namespace Ryujinx.HLE.HOS.Services.Vi.RootService
|
|||
|
||||
for (int i = 0; i < (int)displayCount; i++)
|
||||
{
|
||||
context.Memory.Fill(displayInfoBuffer + (ulong)(i * Unsafe.SizeOf<DisplayInfo>()), (ulong)(Unsafe.SizeOf<DisplayInfo>()), 0x00);
|
||||
context.Memory.Write(displayInfoBuffer, _displayInfo[i]);
|
||||
context.Memory.Write(displayInfoBuffer + (ulong)(i * Unsafe.SizeOf<DisplayInfo>()), _displayInfo[i]);
|
||||
}
|
||||
|
||||
context.ResponseData.Write(displayCount);
|
||||
|
|
Loading…
Reference in a new issue