diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-24 04:00:17 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-01-25 04:24:16 +0100 |
commit | 7588b24f46b52c80018153a37fed214d9856f0f2 (patch) | |
tree | 60cc67727ba441d31730ce37d9e5b64987cad26a | |
parent | hle: Rename RequestBuilder to ResponseBuilder. (diff) | |
download | yuzu-7588b24f46b52c80018153a37fed214d9856f0f2.tar yuzu-7588b24f46b52c80018153a37fed214d9856f0f2.tar.gz yuzu-7588b24f46b52c80018153a37fed214d9856f0f2.tar.bz2 yuzu-7588b24f46b52c80018153a37fed214d9856f0f2.tar.lz yuzu-7588b24f46b52c80018153a37fed214d9856f0f2.tar.xz yuzu-7588b24f46b52c80018153a37fed214d9856f0f2.tar.zst yuzu-7588b24f46b52c80018153a37fed214d9856f0f2.zip |
-rw-r--r-- | src/core/hle/kernel/server_session.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/server_session.cpp b/src/core/hle/kernel/server_session.cpp index 7f215d0bb..54481f7f1 100644 --- a/src/core/hle/kernel/server_session.cpp +++ b/src/core/hle/kernel/server_session.cpp @@ -89,9 +89,9 @@ ResultCode ServerSession::HandleSyncRequest(SharedPtr<Thread> thread) { } LOG_CRITICAL(IPC, "Unknown domain command=%d", domain_message_header->command.Value()); - UNIMPLEMENTED(); + ASSERT(false); } - return domain_request_handlers.front()->HandleSyncRequest(context); + // If there is no domain header, the regular session handler is used } // If this ServerSession has an associated HLE handler, forward the request to it. @@ -117,7 +117,7 @@ ResultCode ServerSession::HandleSyncRequest(SharedPtr<Thread> thread) { // end of the command such that only commands following this one are handled as domains if (convert_to_domain) { ASSERT_MSG(domain_request_handlers.empty(), "already a domain"); - domain_request_handlers.push_back(std::move(hle_handler)); + domain_request_handlers = {hle_handler}; convert_to_domain = false; } |