diff options
| author | Lioncash <mathew1800@gmail.com> | 2016-12-08 05:20:12 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2016-12-08 06:13:04 -0500 |
| commit | cd778cf9915689f14fbf7bd4499edd186993bc9e (patch) | |
| tree | 32cba6a063bd91307b83a9c2f97778e3211fe1c5 /src/core/hle/service/ptm/ptm_u.h | |
| parent | 41c03f481a6d95dab830d6ecf6e563ff7284dc9a (diff) | |
service: Drop '_Interface' in ptm service class names
Inheriting from Service::Interface makes this obvious.
Diffstat (limited to 'src/core/hle/service/ptm/ptm_u.h')
| -rw-r--r-- | src/core/hle/service/ptm/ptm_u.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/ptm/ptm_u.h b/src/core/hle/service/ptm/ptm_u.h index bf132f610..7b75d6e49 100644 --- a/src/core/hle/service/ptm/ptm_u.h +++ b/src/core/hle/service/ptm/ptm_u.h @@ -9,9 +9,9 @@ namespace Service { namespace PTM { -class PTM_U_Interface : public Interface { +class PTM_U final : public Interface { public: - PTM_U_Interface(); + PTM_U(); std::string GetPortName() const override { return "ptm:u"; |
