diff options
author | Rozlette <Uberpanzermensch@gmail.com> | 2018-01-18 18:02:05 +0100 |
---|---|---|
committer | Rozlette <Uberpanzermensch@gmail.com> | 2018-01-18 18:02:05 +0100 |
commit | 378cea2ae2e8d984427b4d0c2b6543b751af0404 (patch) | |
tree | 868bf8f304833f55dcb8a24d29071247076802de | |
parent | time: Refactor time:* to use a single shared module (diff) | |
download | yuzu-378cea2ae2e8d984427b4d0c2b6543b751af0404.tar yuzu-378cea2ae2e8d984427b4d0c2b6543b751af0404.tar.gz yuzu-378cea2ae2e8d984427b4d0c2b6543b751af0404.tar.bz2 yuzu-378cea2ae2e8d984427b4d0c2b6543b751af0404.tar.lz yuzu-378cea2ae2e8d984427b4d0c2b6543b751af0404.tar.xz yuzu-378cea2ae2e8d984427b4d0c2b6543b751af0404.tar.zst yuzu-378cea2ae2e8d984427b4d0c2b6543b751af0404.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/time/time.cpp | 12 |
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: void ToCalendarTimeWithMyRule(Kernel::HLERequestContext& ctx) { IPC::RequestParser rp{ctx}; - u64 posixTime = rp.Pop<u64>(); + u64 posix_time = rp.Pop<u64>(); - LOG_WARNING(Service, "(STUBBED) called, posixTime=0x%016llX", posixTime); + LOG_WARNING(Service, "(STUBBED) called, posix_time=0x%016llX", posix_time); - CalendarTime calendarTime{2018, 1, 1, 0, 0, 0}; - CalendarAdditionalInfo additionalInfo{}; + CalendarTime calendar_time{2018, 1, 1, 0, 0, 0}; + CalendarAdditionalInfo additional_info{}; IPC::RequestBuilder rb{ctx, 10}; rb.Push(RESULT_SUCCESS); - rb.PushRaw(calendarTime); - rb.PushRaw(additionalInfo); + rb.PushRaw(calendar_time); + rb.PushRaw(additional_info); } }; |