diff options
| author | 2018-09-19 16:46:11 +1000 | |
|---|---|---|
| committer | 2018-09-19 16:46:11 +1000 | |
| commit | d06f4cfc63864b65ba7728fead4245ef7279a7c4 (patch) | |
| tree | d1725d15dda98781d590380328d96f281d096be4 /src/core/hle/service/ssl | |
| parent | Merge pull request #1348 from ogniK5377/GetImageSize (diff) | |
| download | yuzu-d06f4cfc63864b65ba7728fead4245ef7279a7c4.tar.gz yuzu-d06f4cfc63864b65ba7728fead4245ef7279a7c4.tar.xz yuzu-d06f4cfc63864b65ba7728fead4245ef7279a7c4.zip | |
Corrected SSL::SetInterfaceVersion
Should be a single u32
Diffstat (limited to 'src/core/hle/service/ssl')
| -rw-r--r-- | src/core/hle/service/ssl/ssl.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/ssl/ssl.cpp b/src/core/hle/service/ssl/ssl.cpp index 63b86e099..bb5f5b321 100644 --- a/src/core/hle/service/ssl/ssl.cpp +++ b/src/core/hle/service/ssl/ssl.cpp | |||
| @@ -103,6 +103,7 @@ public: | |||
| 103 | } | 103 | } |
| 104 | 104 | ||
| 105 | private: | 105 | private: |
| 106 | u32 ssl_version{}; | ||
| 106 | void CreateContext(Kernel::HLERequestContext& ctx) { | 107 | void CreateContext(Kernel::HLERequestContext& ctx) { |
| 107 | LOG_WARNING(Service_SSL, "(STUBBED) called"); | 108 | LOG_WARNING(Service_SSL, "(STUBBED) called"); |
| 108 | 109 | ||
| @@ -112,10 +113,9 @@ private: | |||
| 112 | } | 113 | } |
| 113 | 114 | ||
| 114 | void SetInterfaceVersion(Kernel::HLERequestContext& ctx) { | 115 | void SetInterfaceVersion(Kernel::HLERequestContext& ctx) { |
| 115 | LOG_WARNING(Service_SSL, "(STUBBED) called"); | 116 | LOG_DEBUG(Service_SSL, "called"); |
| 116 | IPC::RequestParser rp{ctx}; | 117 | IPC::RequestParser rp{ctx}; |
| 117 | u32 unk1 = rp.Pop<u32>(); // Probably minor/major? | 118 | ssl_version = rp.Pop<u32>(); |
| 118 | u32 unk2 = rp.Pop<u32>(); // TODO(ogniK): Figure out what this does | ||
| 119 | 119 | ||
| 120 | IPC::ResponseBuilder rb{ctx, 2}; | 120 | IPC::ResponseBuilder rb{ctx, 2}; |
| 121 | rb.Push(RESULT_SUCCESS); | 121 | rb.Push(RESULT_SUCCESS); |