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

- Since we do not emulate LDN, returning an error here makes more sense.
This commit is contained in:
bunnei 2021-02-27 11:59:29 -08:00
parent 09f7c355c6
commit ab65cb499d

View File

@ -156,7 +156,7 @@ public:
is_initialized = true;
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(RESULT_SUCCESS);
rb.Push(ERROR_DISABLED);
}
private: