erpt: fix access to time service on versions where it is disallowed

This commit is contained in:
Michael Scire 2020-04-22 12:03:55 -07:00
parent 6ad0f0e7f2
commit 93e0c9194d

View file

@ -67,7 +67,7 @@ namespace ams::erpt::srv {
Result Reporter::CollectUniqueReportFields() {
this->occurrence_tick = os::GetSystemTick();
if (hos::GetVersion() >= hos::Version_3_0_0) {
if (hos::GetVersion() >= hos::Version_5_0_0) {
this->steady_clock_internal_offset_seconds = time::GetStandardSteadyClockInternalOffset().GetSeconds();
} else {
this->steady_clock_internal_offset_seconds = 0;