mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-14 09:27:58 -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:
@ -211,8 +211,9 @@ Module::Interface::Interface(std::shared_ptr<Module> time, const char* name)
|
||||
|
||||
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
||||
auto time = std::make_shared<Module>();
|
||||
std::make_shared<TIME>(time, "time:s")->InstallAsService(service_manager);
|
||||
std::make_shared<TIME>(time, "time:u")->InstallAsService(service_manager);
|
||||
std::make_shared<Time>(time, "time:a")->InstallAsService(service_manager);
|
||||
std::make_shared<Time>(time, "time:s")->InstallAsService(service_manager);
|
||||
std::make_shared<Time>(time, "time:u")->InstallAsService(service_manager);
|
||||
}
|
||||
|
||||
} // namespace Service::Time
|
||||
|
Reference in New Issue
Block a user