aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-02-27 11:59:29 -0800
committerbunnei <bunneidev@gmail.com>2021-02-27 11:59:29 -0800
commitab65cb499d9b6bdad5545de4e542017fe746bc93 (patch)
tree5f56d0a20c12b84718762cb6cac7985e64b6e007 /src
parent09f7c355c6d7e3c7845ba96d9704489d2d5853f4 (diff)
core: hle: ldn: Error out on call to Initialization.
- Since we do not emulate LDN, returning an error here makes more sense.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/ldn/ldn.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/ldn/ldn.cpp b/src/core/hle/service/ldn/ldn.cpp
index c630d93cd0..d160ffe87d 100644
--- a/src/core/hle/service/ldn/ldn.cpp
+++ b/src/core/hle/service/ldn/ldn.cpp
@@ -156,7 +156,7 @@ public:
is_initialized = true;
IPC::ResponseBuilder rb{ctx, 2};
- rb.Push(RESULT_SUCCESS);
+ rb.Push(ERROR_DISABLED);
}
private: