mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-15 22:57:57 -05:00
time: Add the time:a service
Given we already have time:s and time:u, we should also have time:a
This commit is contained in:
@ -6,14 +6,14 @@
|
||||
|
||||
namespace Service::Time {
|
||||
|
||||
TIME::TIME(std::shared_ptr<Module> time, const char* name)
|
||||
Time::Time(std::shared_ptr<Module> time, const char* name)
|
||||
: Module::Interface(std::move(time), name) {
|
||||
static const FunctionInfo functions[] = {
|
||||
{0, &TIME::GetStandardUserSystemClock, "GetStandardUserSystemClock"},
|
||||
{1, &TIME::GetStandardNetworkSystemClock, "GetStandardNetworkSystemClock"},
|
||||
{2, &TIME::GetStandardSteadyClock, "GetStandardSteadyClock"},
|
||||
{3, &TIME::GetTimeZoneService, "GetTimeZoneService"},
|
||||
{4, &TIME::GetStandardLocalSystemClock, "GetStandardLocalSystemClock"},
|
||||
{0, &Time::GetStandardUserSystemClock, "GetStandardUserSystemClock"},
|
||||
{1, &Time::GetStandardNetworkSystemClock, "GetStandardNetworkSystemClock"},
|
||||
{2, &Time::GetStandardSteadyClock, "GetStandardSteadyClock"},
|
||||
{3, &Time::GetTimeZoneService, "GetTimeZoneService"},
|
||||
{4, &Time::GetStandardLocalSystemClock, "GetStandardLocalSystemClock"},
|
||||
{5, nullptr, "GetEphemeralNetworkSystemClock"},
|
||||
{50, nullptr, "SetStandardSteadyClockInternalOffset"},
|
||||
{100, nullptr, "IsStandardUserSystemClockAutomaticCorrectionEnabled"},
|
||||
|
Reference in New Issue
Block a user