diff options
| author | 2018-01-18 11:02:05 -0600 | |
|---|---|---|
| committer | 2018-01-18 11:02:05 -0600 | |
| commit | 378cea2ae2e8d984427b4d0c2b6543b751af0404 (patch) | |
| tree | 868bf8f304833f55dcb8a24d29071247076802de /src | |
| parent | time: Refactor time:* to use a single shared module (diff) | |
| download | yuzu-378cea2ae2e8d984427b4d0c2b6543b751af0404.tar.gz yuzu-378cea2ae2e8d984427b4d0c2b6543b751af0404.tar.xz yuzu-378cea2ae2e8d984427b4d0c2b6543b751af0404.zip | |
time: Fix use of CamelCase in ToCalendarTimeWithMyRule
Diffstat (limited to 'src')
| -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: | |||
| 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 | ||