Explorar o código

core: hle: ldn: Error out on call to Initialization.

- Since we do not emulate LDN, returning an error here makes more sense.
bunnei %!s(int64=5) %!d(string=hai) anos
pai
achega
ab65cb499d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/core/hle/service/ldn/ldn.cpp

+ 1 - 1
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: