diff options
| author | 2018-12-19 13:10:11 -0500 | |
|---|---|---|
| committer | 2018-12-19 13:10:11 -0500 | |
| commit | 80d36634e1e96be54eea3b405d8fe9c88a9c09b1 (patch) | |
| tree | d1e92b3a4f44a83a271ce679e5f2130deb8d2a53 /src | |
| parent | Merge pull request #1907 from lioncash/attribute (diff) | |
| parent | service/sm: Improve debug log for RegisterService (diff) | |
| download | yuzu-80d36634e1e96be54eea3b405d8fe9c88a9c09b1.tar.gz yuzu-80d36634e1e96be54eea3b405d8fe9c88a9c09b1.tar.xz yuzu-80d36634e1e96be54eea3b405d8fe9c88a9c09b1.zip | |
Merge pull request #1915 from lioncash/sm
service/sm: Improve debug log for RegisterService
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/sm/sm.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/hle/service/sm/sm.cpp b/src/core/hle/service/sm/sm.cpp index d73530086..142929124 100644 --- a/src/core/hle/service/sm/sm.cpp +++ b/src/core/hle/service/sm/sm.cpp | |||
| @@ -145,12 +145,13 @@ void SM::RegisterService(Kernel::HLERequestContext& ctx) { | |||
| 145 | 145 | ||
| 146 | const std::string name(name_buf.begin(), end); | 146 | const std::string name(name_buf.begin(), end); |
| 147 | 147 | ||
| 148 | const auto unk_bool = static_cast<bool>(rp.PopRaw<u32>()); | 148 | const auto is_light = static_cast<bool>(rp.PopRaw<u32>()); |
| 149 | const auto session_count = rp.PopRaw<u32>(); | 149 | const auto max_session_count = rp.PopRaw<u32>(); |
| 150 | 150 | ||
| 151 | LOG_DEBUG(Service_SM, "called with unk_bool={}", unk_bool); | 151 | LOG_DEBUG(Service_SM, "called with name={}, max_session_count={}, is_light={}", name, |
| 152 | max_session_count, is_light); | ||
| 152 | 153 | ||
| 153 | auto handle = service_manager->RegisterService(name, session_count); | 154 | auto handle = service_manager->RegisterService(name, max_session_count); |
| 154 | if (handle.Failed()) { | 155 | if (handle.Failed()) { |
| 155 | LOG_ERROR(Service_SM, "failed to register service with error_code={:08X}", | 156 | LOG_ERROR(Service_SM, "failed to register service with error_code={:08X}", |
| 156 | handle.Code().raw); | 157 | handle.Code().raw); |