summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-09-23 22:32:14 -0400
committerGravatar GitHub2018-09-23 22:32:14 -0400
commitf2c1fd08f9b593e122f6db882f71b2a4ef13108b (patch)
tree927260ad2a6ee9b93fcf23ffde55c53d0a7f577e /src
parentAdded glObjectLabels for renderdoc for textures and shader programs (#1384) (diff)
parentCorrected SSL::SetInterfaceVersion (diff)
downloadyuzu-f2c1fd08f9b593e122f6db882f71b2a4ef13108b.tar.gz
yuzu-f2c1fd08f9b593e122f6db882f71b2a4ef13108b.tar.xz
yuzu-f2c1fd08f9b593e122f6db882f71b2a4ef13108b.zip
Merge pull request #1354 from ogniK5377/ssl-version
Corrected SSL::SetInterfaceVersion
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/ssl/ssl.cpp6
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 fe0a318ee..bc4f7a437 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
105private: 105private:
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);