|
|
@ -238,7 +238,7 @@ ISystemSettingsServer::ISystemSettingsServer(Core::System& system_) |
|
|
{146, nullptr, "SetConsoleSixAxisSensorAngularVelocityTimeBias"}, |
|
|
{146, nullptr, "SetConsoleSixAxisSensorAngularVelocityTimeBias"}, |
|
|
{147, nullptr, "GetConsoleSixAxisSensorAngularAcceleration"}, |
|
|
{147, nullptr, "GetConsoleSixAxisSensorAngularAcceleration"}, |
|
|
{148, nullptr, "SetConsoleSixAxisSensorAngularAcceleration"}, |
|
|
{148, nullptr, "SetConsoleSixAxisSensorAngularAcceleration"}, |
|
|
{149, nullptr, "GetRebootlessSystemUpdateVersion"}, |
|
|
|
|
|
|
|
|
{149, C<&ISystemSettingsServer::GetRebootlessSystemUpdateVersion>, "GetRebootlessSystemUpdateVersion"}, |
|
|
{150, C<&ISystemSettingsServer::GetDeviceTimeZoneLocationUpdatedTime>, "GetDeviceTimeZoneLocationUpdatedTime"}, |
|
|
{150, C<&ISystemSettingsServer::GetDeviceTimeZoneLocationUpdatedTime>, "GetDeviceTimeZoneLocationUpdatedTime"}, |
|
|
{151, C<&ISystemSettingsServer::SetDeviceTimeZoneLocationUpdatedTime>, "SetDeviceTimeZoneLocationUpdatedTime"}, |
|
|
{151, C<&ISystemSettingsServer::SetDeviceTimeZoneLocationUpdatedTime>, "SetDeviceTimeZoneLocationUpdatedTime"}, |
|
|
{152, C<&ISystemSettingsServer::GetUserSystemClockAutomaticCorrectionUpdatedTime>, "GetUserSystemClockAutomaticCorrectionUpdatedTime"}, |
|
|
{152, C<&ISystemSettingsServer::GetUserSystemClockAutomaticCorrectionUpdatedTime>, "GetUserSystemClockAutomaticCorrectionUpdatedTime"}, |
|
|
@ -842,6 +842,15 @@ Result ISystemSettingsServer::SetQuestFlag(QuestFlag quest_flag) { |
|
|
R_SUCCEED(); |
|
|
R_SUCCEED(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Result ISystemSettingsServer::GetRebootlessSystemUpdateVersion(Out<RebootlessSystemUpdateVersion> out_rebootless_system_update) { |
|
|
|
|
|
LOG_INFO(Service_SET, "(STUBBED) called"); |
|
|
|
|
|
|
|
|
|
|
|
out_rebootless_system_update->version = 0; |
|
|
|
|
|
strcpy(out_rebootless_system_update->display_version, "0.0.0"); |
|
|
|
|
|
|
|
|
|
|
|
R_SUCCEED(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
Result ISystemSettingsServer::GetDeviceTimeZoneLocationName( |
|
|
Result ISystemSettingsServer::GetDeviceTimeZoneLocationName( |
|
|
Out<Service::PSC::Time::LocationName> out_name) { |
|
|
Out<Service::PSC::Time::LocationName> out_name) { |
|
|
LOG_INFO(Service_SET, "called"); |
|
|
LOG_INFO(Service_SET, "called"); |
|
|
|