summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2018-04-27 05:03:12 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2018-04-27 05:03:12 +0200
commitabc23416e8f2a0963a5ddff021788cae7f00dd62 (patch)
tree5bf36e44e7e264e03210a06a04e2cb64378045d6 /src
parentMerge branch 'master' of https://github.com/yuzu-emu/yuzu into service-impl (diff)
downloadyuzu-abc23416e8f2a0963a5ddff021788cae7f00dd62.tar
yuzu-abc23416e8f2a0963a5ddff021788cae7f00dd62.tar.gz
yuzu-abc23416e8f2a0963a5ddff021788cae7f00dd62.tar.bz2
yuzu-abc23416e8f2a0963a5ddff021788cae7f00dd62.tar.lz
yuzu-abc23416e8f2a0963a5ddff021788cae7f00dd62.tar.xz
yuzu-abc23416e8f2a0963a5ddff021788cae7f00dd62.tar.zst
yuzu-abc23416e8f2a0963a5ddff021788cae7f00dd62.zip
Diffstat (limited to 'src')
-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 {
Service_NS, ///< The NS services
Service_NVDRV, ///< The NVDRV (Nvidia driver) service
Service_PCTL, ///< The PCTL (Parental control) service
- Service_PREPO, ///< The PREPO(Play report) service
+ Service_PREPO, ///< The PREPO (Play report) service
Service_SET, ///< The SET (Settings) service
Service_SM, ///< The SM (Service manager) service
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:
private:
void Initialize(Kernel::HLERequestContext& ctx) {
- LOG_WARNING(Service_NFP, "(STUBBED) called");
+ NGLOG_WARNING(Service_NFP, "(STUBBED) called");
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
}
};
void Module::Interface::CreateUserInterface(Kernel::HLERequestContext& ctx) {
- LOG_WARNING(Service_NFP, "(STUBBED) called");
+ NGLOG_DEBUG(Service_NFP, "called");
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
rb.Push(RESULT_SUCCESS);
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) {
void PlayReport::SaveReportWithUser(Kernel::HLERequestContext& ctx) {
// TODO(ogniK): Do we want to add play report?
- LOG_WARNING(Service_PREPO, "(STUBBED) called");
+ NGLOG_WARNING(Service_PREPO, "(STUBBED) called");
IPC::ResponseBuilder rb{ctx, 2};
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") {
}
void SSL::SetInterfaceVersion(Kernel::HLERequestContext& ctx) {
- LOG_WARNING(Service_SSL, "(STUBBED) called");
+ NGLOG_WARNING(Service_SSL, "(STUBBED) called");
IPC::RequestParser rp{ctx};
u32 unk1 = rp.Pop<u32>(); // Probably minor/major?
u32 unk2 = rp.Pop<u32>(); // TODO(ogniK): Figure out what this does