aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/set/set.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-04-19 12:45:26 -0400
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-04-19 12:45:50 -0400
commit27eeb20001777227a3e275a4f2be75ac081622e8 (patch)
treeac2b1b0976bef32c400616ef80694845d1c3a0d7 /src/core/hle/service/set/set.cpp
parent9e7713c150d4d0596ef60ec005fecb4544314c1f (diff)
general: Write buffers before pushing raw arguments
For consistency with the rest of the service implementations
Diffstat (limited to 'src/core/hle/service/set/set.cpp')
-rw-r--r--src/core/hle/service/set/set.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/set/set.cpp b/src/core/hle/service/set/set.cpp
index bc7dc776f..fbdc4793d 100644
--- a/src/core/hle/service/set/set.cpp
+++ b/src/core/hle/service/set/set.cpp
@@ -104,9 +104,10 @@ void GetKeyCodeMapImpl(Kernel::HLERequestContext& ctx) {
layout = key_code->second;
}
+ ctx.WriteBuffer(layout);
+
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
- ctx.WriteBuffer(layout);
}
} // Anonymous namespace