summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-04-19 18:45:26 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-04-19 18:45:50 +0200
commit27eeb20001777227a3e275a4f2be75ac081622e8 (patch)
treeac2b1b0976bef32c400616ef80694845d1c3a0d7 /src/core/hle/service/time
parentMerge pull request #6208 from lat9nq/boost-static (diff)
downloadyuzu-27eeb20001777227a3e275a4f2be75ac081622e8.tar
yuzu-27eeb20001777227a3e275a4f2be75ac081622e8.tar.gz
yuzu-27eeb20001777227a3e275a4f2be75ac081622e8.tar.bz2
yuzu-27eeb20001777227a3e275a4f2be75ac081622e8.tar.lz
yuzu-27eeb20001777227a3e275a4f2be75ac081622e8.tar.xz
yuzu-27eeb20001777227a3e275a4f2be75ac081622e8.tar.zst
yuzu-27eeb20001777227a3e275a4f2be75ac081622e8.zip
Diffstat (limited to 'src/core/hle/service/time')
-rw-r--r--src/core/hle/service/time/time_zone_service.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/service/time/time_zone_service.cpp b/src/core/hle/service/time/time_zone_service.cpp
index 3117627cf..19d7a1a0c 100644
--- a/src/core/hle/service/time/time_zone_service.cpp
+++ b/src/core/hle/service/time/time_zone_service.cpp
@@ -140,11 +140,12 @@ void ITimeZoneService::ToPosixTime(Kernel::HLERequestContext& ctx) {
return;
}
+ ctx.WriteBuffer(posix_time);
+
// TODO(bunnei): Handle multiple times
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
rb.PushRaw<u32>(1); // Number of times we're returning
- ctx.WriteBuffer(posix_time);
}
void ITimeZoneService::ToPosixTimeWithMyRule(Kernel::HLERequestContext& ctx) {
@@ -163,10 +164,11 @@ void ITimeZoneService::ToPosixTimeWithMyRule(Kernel::HLERequestContext& ctx) {
return;
}
+ ctx.WriteBuffer(posix_time);
+
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
rb.PushRaw<u32>(1); // Number of times we're returning
- ctx.WriteBuffer(posix_time);
}
} // namespace Service::Time