summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar David Marcec2018-04-26 20:03:12 -0700
committerGravatar David Marcec2018-04-26 20:03:12 -0700
commitabc23416e8f2a0963a5ddff021788cae7f00dd62 (patch)
tree5bf36e44e7e264e03210a06a04e2cb64378045d6
parentMerge branch 'master' of https://github.com/yuzu-emu/yuzu into service-impl (diff)
downloadyuzu-abc23416e8f2a0963a5ddff021788cae7f00dd62.tar.gz
yuzu-abc23416e8f2a0963a5ddff021788cae7f00dd62.tar.xz
yuzu-abc23416e8f2a0963a5ddff021788cae7f00dd62.zip
Switched to NGLOG_WARNING
Diffstat (limited to '')
-rw-r--r--src/common/logging/log.h2
-rw-r--r--src/core/hle/service/nfp/nfp.cpp4
-rw-r--r--src/core/hle/service/prepo/prepo.cpp2
-rw-r--r--src/core/hle/service/ssl/ssl.cpp2
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
48private: 48private:
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
56void Module::Interface::CreateUserInterface(Kernel::HLERequestContext& ctx) { 56void 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
28void PlayReport::SaveReportWithUser(Kernel::HLERequestContext& ctx) { 28void 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
105void SSL::SetInterfaceVersion(Kernel::HLERequestContext& ctx) { 105void 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