diff options
| author | 2018-07-14 19:40:34 -0700 | |
|---|---|---|
| committer | 2018-07-14 19:40:34 -0700 | |
| commit | c324a378ac5ddc106cab9856a9f90a7f8fa573f1 (patch) | |
| tree | b933abad632e7147b6414c6871d6194133809f8f | |
| parent | Merge pull request #662 from Subv/delete_file (diff) | |
| parent | Services/BSD: Corrected the return for StartMonitoring according to SwIPC. (diff) | |
| download | yuzu-c324a378ac5ddc106cab9856a9f90a7f8fa573f1.tar.gz yuzu-c324a378ac5ddc106cab9856a9f90a7f8fa573f1.tar.xz yuzu-c324a378ac5ddc106cab9856a9f90a7f8fa573f1.zip | |
Merge pull request #663 from Subv/bsd
Services/BSD: Corrected the return for StartMonitoring according to SwIPC
| -rw-r--r-- | src/core/hle/service/sockets/bsd.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/sockets/bsd.cpp b/src/core/hle/service/sockets/bsd.cpp index 32648bdd9..6aa1e2511 100644 --- a/src/core/hle/service/sockets/bsd.cpp +++ b/src/core/hle/service/sockets/bsd.cpp | |||
| @@ -19,10 +19,9 @@ void BSD::RegisterClient(Kernel::HLERequestContext& ctx) { | |||
| 19 | void BSD::StartMonitoring(Kernel::HLERequestContext& ctx) { | 19 | void BSD::StartMonitoring(Kernel::HLERequestContext& ctx) { |
| 20 | LOG_WARNING(Service, "(STUBBED) called"); | 20 | LOG_WARNING(Service, "(STUBBED) called"); |
| 21 | 21 | ||
| 22 | IPC::ResponseBuilder rb{ctx, 3}; | 22 | IPC::ResponseBuilder rb{ctx, 2}; |
| 23 | 23 | ||
| 24 | rb.Push(RESULT_SUCCESS); | 24 | rb.Push(RESULT_SUCCESS); |
| 25 | rb.Push<u32>(0); // bsd errno | ||
| 26 | } | 25 | } |
| 27 | 26 | ||
| 28 | void BSD::Socket(Kernel::HLERequestContext& ctx) { | 27 | void BSD::Socket(Kernel::HLERequestContext& ctx) { |