Browse Source

Merge pull request #6054 from Morph1984/time-GetClockSnapshot

time: Assign the current time point to the ClockSnapshot
nce_cpp
bunnei 5 years ago
committed by GitHub
parent
commit
e900bccc7b
  1. 2
      src/core/hle/service/time/time.cpp

2
src/core/hle/service/time/time.cpp

@ -140,6 +140,8 @@ ResultCode Module::Interface::GetClockSnapshotFromSystemClockContextInternal(
const auto current_time_point{ const auto current_time_point{
time_manager.GetStandardSteadyClockCore().GetCurrentTimePoint(system)}; time_manager.GetStandardSteadyClockCore().GetCurrentTimePoint(system)};
clock_snapshot.steady_clock_time_point = current_time_point;
if (const ResultCode result{Clock::ClockSnapshot::GetCurrentTime( if (const ResultCode result{Clock::ClockSnapshot::GetCurrentTime(
clock_snapshot.user_time, current_time_point, clock_snapshot.user_context)}; clock_snapshot.user_time, current_time_point, clock_snapshot.user_context)};
result != RESULT_SUCCESS) { result != RESULT_SUCCESS) {

Loading…
Cancel
Save