summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar David Marcec2018-09-19 16:46:11 +1000
committerGravatar David Marcec2018-09-19 16:46:11 +1000
commitd06f4cfc63864b65ba7728fead4245ef7279a7c4 (patch)
treed1725d15dda98781d590380328d96f281d096be4 /src
parentMerge pull request #1348 from ogniK5377/GetImageSize (diff)
downloadyuzu-d06f4cfc63864b65ba7728fead4245ef7279a7c4.tar.gz
yuzu-d06f4cfc63864b65ba7728fead4245ef7279a7c4.tar.xz
yuzu-d06f4cfc63864b65ba7728fead4245ef7279a7c4.zip
Corrected SSL::SetInterfaceVersion
Should be a single u32
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 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
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);