Nits
This commit is contained in:
parent
010d57911e
commit
888d44e8b5
3 changed files with 4 additions and 4 deletions
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
public BehaviorInfo()
|
public BehaviorInfo()
|
||||||
{
|
{
|
||||||
/* TODO: return a 0xC0 struct:
|
/* TODO: this class got a size of 0xC0
|
||||||
0x00 - uint - Internal Revision
|
0x00 - uint - Internal Revision
|
||||||
0x04 - uint - User Revision
|
0x04 - uint - User Revision
|
||||||
0x08 - ... unknown ...
|
0x08 - ... unknown ...
|
||||||
|
|
|
@ -221,7 +221,7 @@ namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
|
||||||
|
|
||||||
if (behaviorInfo.IsElapsedFrameCountSupported())
|
if (behaviorInfo.IsElapsedFrameCountSupported())
|
||||||
{
|
{
|
||||||
outputHeader.Unknown28 = 0x10;
|
outputHeader.ElapsedFrameCountInfoSize = 0x10;
|
||||||
}
|
}
|
||||||
|
|
||||||
outputHeader.TotalSize = updateHeaderSize +
|
outputHeader.TotalSize = updateHeaderSize +
|
||||||
|
@ -231,7 +231,7 @@ namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
|
||||||
outputHeader.EffectSize +
|
outputHeader.EffectSize +
|
||||||
outputHeader.SinkSize +
|
outputHeader.SinkSize +
|
||||||
outputHeader.PerformanceManagerSize +
|
outputHeader.PerformanceManagerSize +
|
||||||
outputHeader.Unknown28;
|
outputHeader.ElapsedFrameCountInfoSize;
|
||||||
|
|
||||||
writer.Write(outputHeader);
|
writer.Write(outputHeader);
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
public int SinkSize;
|
public int SinkSize;
|
||||||
public int PerformanceManagerSize;
|
public int PerformanceManagerSize;
|
||||||
public int Unknown24;
|
public int Unknown24;
|
||||||
public int Unknown28;
|
public int ElapsedFrameCountInfoSize;
|
||||||
public int Unknown2C;
|
public int Unknown2C;
|
||||||
public int Unknown30;
|
public int Unknown30;
|
||||||
public int Unknown34;
|
public int Unknown34;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue