From a7bbe60c18c8acdb00ba197c81ccf544eab57a57 Mon Sep 17 00:00:00 2001 From: shutterbug2000 Date: Sun, 25 Nov 2018 15:47:37 -0600 Subject: [PATCH] Put AddPostDataAscii in the function list --- src/core/hle/service/http_c.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/http_c.cpp b/src/core/hle/service/http_c.cpp index 043fff399..f1c694114 100644 --- a/src/core/hle/service/http_c.cpp +++ b/src/core/hle/service/http_c.cpp @@ -623,7 +623,7 @@ HTTP_C::HTTP_C() : ServiceFramework("http:C", 32) { {0x000F00C4, nullptr, "SetBasicAuthorization"}, {0x00100080, nullptr, "SetSocketBufferSize"}, {0x001100C4, &HTTP_C::AddRequestHeader, "AddRequestHeader"}, - {0x001200C4, nullptr, "AddPostDataAscii"}, + {0x001200C4, &HTTP_C::AddPostDataAscii, "AddPostDataAscii"}, {0x001300C4, nullptr, "AddPostDataBinary"}, {0x00140082, nullptr, "AddPostDataRaw"}, {0x00150080, nullptr, "SetPostDataType"},