Merge pull request #6007 from bunnei/ldn-error

core: hle: ldn: Error out on call to Initialization.
This commit is contained in:
bunnei 2021-02-28 13:34:20 -08:00 committed by GitHub
commit 9e9341f4b4
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

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