diff options
| author | 2018-04-26 20:03:12 -0700 | |
|---|---|---|
| committer | 2018-04-26 20:03:12 -0700 | |
| commit | abc23416e8f2a0963a5ddff021788cae7f00dd62 (patch) | |
| tree | 5bf36e44e7e264e03210a06a04e2cb64378045d6 /src/core/hle/service/ssl | |
| 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 'src/core/hle/service/ssl')
| -rw-r--r-- | src/core/hle/service/ssl/ssl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 |