aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/time/interface.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-24 02:47:41 -0400
committerLioncash <mathew1800@gmail.com>2018-07-25 14:42:04 -0400
commit3c1cb3b11e84aae62b4a16a139fab62c3b697e4c (patch)
treef5541dba18f5b2f86016d0a7713d40db0afcecb3 /src/core/hle/service/time/interface.h
parenta61124a9e7f2a6eab7f51c2b4dd30574e62ba25a (diff)
time: Add the time:a service
Given we already have time:s and time:u, we should also have time:a
Diffstat (limited to 'src/core/hle/service/time/interface.h')
-rw-r--r--src/core/hle/service/time/interface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/time/interface.h b/src/core/hle/service/time/interface.h
index 0f97cec35..183a53db1 100644
--- a/src/core/hle/service/time/interface.h
+++ b/src/core/hle/service/time/interface.h
@@ -8,9 +8,9 @@
namespace Service::Time {
-class TIME final : public Module::Interface {
+class Time final : public Module::Interface {
public:
- explicit TIME(std::shared_ptr<Module> time, const char* name);
+ explicit Time(std::shared_ptr<Module> time, const char* name);
};
} // namespace Service::Time