Browse Source
Merge pull request #6007 from bunnei/ldn-error
core: hle: ldn: Error out on call to Initialization.
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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: |
|
|
|
|