HLE/IPC: remove assertion on empty buffer.

Some service functions do require to push an empty buffer in some cases. See APT:ReceiveParameter/GlanceParameter
This commit is contained in:
wwylele 2018-02-11 00:09:52 +02:00
parent 66141ed004
commit c4db298a7d
No known key found for this signature in database
GPG Key ID: 0E87F3187357C16C
1 changed files with 0 additions and 1 deletions

View File

@ -52,7 +52,6 @@ void HLERequestContext::ClearIncomingObjects() {
}
const std::vector<u8>& HLERequestContext::GetStaticBuffer(u8 buffer_id) const {
ASSERT_MSG(!static_buffers[buffer_id].empty(), "Empty static buffer!");
return static_buffers[buffer_id];
}