aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon.Generators
diff options
context:
space:
mode:
authorEmmanuel Hansen <emmausssss@gmail.com>2023-05-09 21:46:23 +0000
committerGitHub <noreply@github.com>2023-05-09 21:46:23 +0000
commit0bc8151c7ecdacc1506305a8d60e7b3c7b13622d (patch)
treec14b5a4463764a0f86285054cea813e242950ba2 /src/Ryujinx.Horizon.Generators
parent40c17673f5a1a7c96f548dc4efaf05bba832a340 (diff)
IPC - Refactor Bcat service to use new ipc - Revisit (#4803)
* bcat ipc * fix hipc buffer flags * add buffer fixed size flag on generator
Diffstat (limited to 'src/Ryujinx.Horizon.Generators')
-rw-r--r--src/Ryujinx.Horizon.Generators/Hipc/HipcGenerator.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ryujinx.Horizon.Generators/Hipc/HipcGenerator.cs b/src/Ryujinx.Horizon.Generators/Hipc/HipcGenerator.cs
index 8f4c37f7..284df482 100644
--- a/src/Ryujinx.Horizon.Generators/Hipc/HipcGenerator.cs
+++ b/src/Ryujinx.Horizon.Generators/Hipc/HipcGenerator.cs
@@ -145,7 +145,7 @@ namespace Ryujinx.Horizon.Generators.Hipc
if (bufferFixedSize != null)
{
- arg = $"new CommandArg({bufferFlags}, {bufferFixedSize})";
+ arg = $"new CommandArg({bufferFlags} | HipcBufferFlags.FixedSize, {bufferFixedSize})";
}
else
{