diff options
| author | 2018-04-26 20:03:12 -0700 | |
|---|---|---|
| committer | 2018-04-26 20:03:12 -0700 | |
| commit | abc23416e8f2a0963a5ddff021788cae7f00dd62 (patch) | |
| tree | 5bf36e44e7e264e03210a06a04e2cb64378045d6 | |
| parent | Merge branch 'master' of https://github.com/yuzu-emu/yuzu into service-impl (diff) | |
| download | yuzu-abc23416e8f2a0963a5ddff021788cae7f00dd62.tar.gz yuzu-abc23416e8f2a0963a5ddff021788cae7f00dd62.tar.xz yuzu-abc23416e8f2a0963a5ddff021788cae7f00dd62.zip | |
Switched to NGLOG_WARNING
Diffstat (limited to '')
| -rw-r--r-- | src/common/logging/log.h | 2 | ||||
| -rw-r--r-- | src/core/hle/service/nfp/nfp.cpp | 4 | ||||
| -rw-r--r-- | src/core/hle/service/prepo/prepo.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/service/ssl/ssl.cpp | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/common/logging/log.h b/src/common/logging/log.h index ade44d9c7..1b29ce6e0 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h | |||
| @@ -65,7 +65,7 @@ enum class Class : ClassType { | |||
| 65 | Service_NS, ///< The NS services | 65 | Service_NS, ///< The NS services |
| 66 | Service_NVDRV, ///< The NVDRV (Nvidia driver) service | 66 | Service_NVDRV, ///< The NVDRV (Nvidia driver) service |
| 67 | Service_PCTL, ///< The PCTL (Parental control) service | 67 | Service_PCTL, ///< The PCTL (Parental control) service |
| 68 | Service_PREPO, ///< The PREPO(Play report) service | 68 | Service_PREPO, ///< The PREPO (Play report) service |
| 69 | Service_SET, ///< The SET (Settings) service | 69 | Service_SET, ///< The SET (Settings) service |
| 70 | Service_SM, ///< The SM (Service manager) service | 70 | Service_SM, ///< The SM (Service manager) service |
| 71 | Service_SPL, ///< The SPL service | 71 | Service_SPL, ///< The SPL service |
diff --git a/src/core/hle/service/nfp/nfp.cpp b/src/core/hle/service/nfp/nfp.cpp index a1cd6b24a..cc0247881 100644 --- a/src/core/hle/service/nfp/nfp.cpp +++ b/src/core/hle/service/nfp/nfp.cpp | |||
| @@ -47,14 +47,14 @@ public: | |||
| 47 | 47 | ||
| 48 | private: | 48 | private: |
| 49 | void Initialize(Kernel::HLERequestContext& ctx) { | 49 | void Initialize(Kernel::HLERequestContext& ctx) { |
| 50 | LOG_WARNING(Service_NFP, "(STUBBED) called"); | 50 | NGLOG_WARNING(Service_NFP, "(STUBBED) called"); |
| 51 | IPC::ResponseBuilder rb{ctx, 2}; | 51 | IPC::ResponseBuilder rb{ctx, 2}; |
| 52 | rb.Push(RESULT_SUCCESS); | 52 | rb.Push(RESULT_SUCCESS); |
| 53 | } | 53 | } |
| 54 | }; | 54 | }; |
| 55 | 55 | ||
| 56 | void Module::Interface::CreateUserInterface(Kernel::HLERequestContext& ctx) { | 56 | void Module::Interface::CreateUserInterface(Kernel::HLERequestContext& ctx) { |
| 57 | LOG_WARNING(Service_NFP, "(STUBBED) called"); | 57 | NGLOG_DEBUG(Service_NFP, "called"); |
| 58 | IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | 58 | IPC::ResponseBuilder rb{ctx, 2, 0, 1}; |
| 59 | rb.Push(RESULT_SUCCESS); | 59 | rb.Push(RESULT_SUCCESS); |
| 60 | rb.PushIpcInterface<IUser>(); | 60 | rb.PushIpcInterface<IUser>(); |
diff --git a/src/core/hle/service/prepo/prepo.cpp b/src/core/hle/service/prepo/prepo.cpp index 3c43b8d8c..eaf30ee6b 100644 --- a/src/core/hle/service/prepo/prepo.cpp +++ b/src/core/hle/service/prepo/prepo.cpp | |||
| @@ -27,7 +27,7 @@ PlayReport::PlayReport(const char* name) : ServiceFramework(name) { | |||
| 27 | 27 | ||
| 28 | void PlayReport::SaveReportWithUser(Kernel::HLERequestContext& ctx) { | 28 | void PlayReport::SaveReportWithUser(Kernel::HLERequestContext& ctx) { |
| 29 | // TODO(ogniK): Do we want to add play report? | 29 | // TODO(ogniK): Do we want to add play report? |
| 30 | LOG_WARNING(Service_PREPO, "(STUBBED) called"); | 30 | NGLOG_WARNING(Service_PREPO, "(STUBBED) called"); |
| 31 | 31 | ||
| 32 | IPC::ResponseBuilder rb{ctx, 2}; | 32 | IPC::ResponseBuilder rb{ctx, 2}; |
| 33 | rb.Push(RESULT_SUCCESS); | 33 | rb.Push(RESULT_SUCCESS); |
diff --git a/src/core/hle/service/ssl/ssl.cpp b/src/core/hle/service/ssl/ssl.cpp index 8a85df91a..b3dad8b06 100644 --- a/src/core/hle/service/ssl/ssl.cpp +++ b/src/core/hle/service/ssl/ssl.cpp | |||
| @@ -103,7 +103,7 @@ SSL::SSL() : ServiceFramework("ssl") { | |||
| 103 | } | 103 | } |
| 104 | 104 | ||
| 105 | void SSL::SetInterfaceVersion(Kernel::HLERequestContext& ctx) { | 105 | void SSL::SetInterfaceVersion(Kernel::HLERequestContext& ctx) { |
| 106 | LOG_WARNING(Service_SSL, "(STUBBED) called"); | 106 | NGLOG_WARNING(Service_SSL, "(STUBBED) called"); |
| 107 | IPC::RequestParser rp{ctx}; | 107 | IPC::RequestParser rp{ctx}; |
| 108 | u32 unk1 = rp.Pop<u32>(); // Probably minor/major? | 108 | u32 unk1 = rp.Pop<u32>(); // Probably minor/major? |
| 109 | u32 unk2 = rp.Pop<u32>(); // TODO(ogniK): Figure out what this does | 109 | u32 unk2 = rp.Pop<u32>(); // TODO(ogniK): Figure out what this does |