1
0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2025-04-19 22:20:07 +00:00

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

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