summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ldn/ldn.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-02-13 11:32:13 +0100
committerbunnei <bunneidev@gmail.com>2021-02-14 05:11:26 +0100
commit51c13606d6b9a25a93bd008db53a2553b16126e5 (patch)
treef0eca4717b30a37215e2715fef80d5b66cd7553d /src/core/hle/service/ldn/ldn.cpp
parenthle: service: am: IStorageAccessor: Fix out of bounds error handling. (diff)
downloadyuzu-51c13606d6b9a25a93bd008db53a2553b16126e5.tar
yuzu-51c13606d6b9a25a93bd008db53a2553b16126e5.tar.gz
yuzu-51c13606d6b9a25a93bd008db53a2553b16126e5.tar.bz2
yuzu-51c13606d6b9a25a93bd008db53a2553b16126e5.tar.lz
yuzu-51c13606d6b9a25a93bd008db53a2553b16126e5.tar.xz
yuzu-51c13606d6b9a25a93bd008db53a2553b16126e5.tar.zst
yuzu-51c13606d6b9a25a93bd008db53a2553b16126e5.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ldn/ldn.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/core/hle/service/ldn/ldn.cpp b/src/core/hle/service/ldn/ldn.cpp
index ee908f399..1c46609ae 100644
--- a/src/core/hle/service/ldn/ldn.cpp
+++ b/src/core/hle/service/ldn/ldn.cpp
@@ -6,6 +6,7 @@
#include "core/hle/ipc_helpers.h"
#include "core/hle/result.h"
+#include "core/hle/service/ldn/errors.h"
#include "core/hle/service/ldn/ldn.h"
#include "core/hle/service/sm/sm.h"
@@ -140,10 +141,11 @@ public:
void Initialize2(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service_LDN, "(STUBBED) called");
- // Result success seem make this services start network and continue.
- // If we just pass result error then it will stop and maybe try again and again.
+
+ // Return the disabled error to indicate that LDN is currently unavailable, otherwise games
+ // will continue to try to make a connection.
IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(RESULT_UNKNOWN);
+ rb.Push(ERROR_DISABLED);
}
};