diff options
| author | 2018-04-22 00:07:55 -0700 | |
|---|---|---|
| committer | 2018-04-22 00:07:55 -0700 | |
| commit | df669bc540d0ffec4afd298fdeb7767c3a4ea242 (patch) | |
| tree | 77ecaa33c6a56ae2bc25adf362c1d1e30e51a32d | |
| parent | Implemented GetIUserInterface properly, Playreport and SSL::SetInterfaceVersi... (diff) | |
| download | yuzu-df669bc540d0ffec4afd298fdeb7767c3a4ea242.tar.gz yuzu-df669bc540d0ffec4afd298fdeb7767c3a4ea242.tar.xz yuzu-df669bc540d0ffec4afd298fdeb7767c3a4ea242.zip | |
lioncash proposed changes
| -rw-r--r-- | src/core/hle/service/prepo/prepo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/prepo/prepo.h b/src/core/hle/service/prepo/prepo.h index 77457b7bd..40e26adcf 100644 --- a/src/core/hle/service/prepo/prepo.h +++ b/src/core/hle/service/prepo/prepo.h | |||
| @@ -11,7 +11,7 @@ namespace Service::Playreport { | |||
| 11 | 11 | ||
| 12 | class Playreport final : public ServiceFramework<Playreport> { | 12 | class Playreport final : public ServiceFramework<Playreport> { |
| 13 | public: | 13 | public: |
| 14 | Playreport(const char* name); | 14 | explicit Playreport(const char* name); |
| 15 | ~Playreport() = default; | 15 | ~Playreport() = default; |
| 16 | 16 | ||
| 17 | private: | 17 | private: |
| @@ -20,4 +20,4 @@ private: | |||
| 20 | 20 | ||
| 21 | void InstallInterfaces(SM::ServiceManager& service_manager); | 21 | void InstallInterfaces(SM::ServiceManager& service_manager); |
| 22 | 22 | ||
| 23 | }; // namespace Service::Playreport | 23 | } // namespace Service::Playreport |