summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/hle/service/time/time.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/service/time/time.cpp b/src/core/hle/service/time/time.cpp
index 1d08e968f..a48d7b304 100644
--- a/src/core/hle/service/time/time.cpp
+++ b/src/core/hle/service/time/time.cpp
@@ -61,16 +61,16 @@ private:
61 61
62 void ToCalendarTimeWithMyRule(Kernel::HLERequestContext& ctx) { 62 void ToCalendarTimeWithMyRule(Kernel::HLERequestContext& ctx) {
63 IPC::RequestParser rp{ctx}; 63 IPC::RequestParser rp{ctx};
64 u64 posixTime = rp.Pop<u64>(); 64 u64 posix_time = rp.Pop<u64>();
65 65
66 LOG_WARNING(Service, "(STUBBED) called, posixTime=0x%016llX", posixTime); 66 LOG_WARNING(Service, "(STUBBED) called, posix_time=0x%016llX", posix_time);
67 67
68 CalendarTime calendarTime{2018, 1, 1, 0, 0, 0}; 68 CalendarTime calendar_time{2018, 1, 1, 0, 0, 0};
69 CalendarAdditionalInfo additionalInfo{}; 69 CalendarAdditionalInfo additional_info{};
70 IPC::RequestBuilder rb{ctx, 10}; 70 IPC::RequestBuilder rb{ctx, 10};
71 rb.Push(RESULT_SUCCESS); 71 rb.Push(RESULT_SUCCESS);
72 rb.PushRaw(calendarTime); 72 rb.PushRaw(calendar_time);
73 rb.PushRaw(additionalInfo); 73 rb.PushRaw(additional_info);
74 } 74 }
75}; 75};
76 76