Clean Warnings (?)
This commit is contained in:
parent
b2d7c92cae
commit
ef875d6a35
15 changed files with 20 additions and 20 deletions
|
@ -269,7 +269,7 @@ std::vector<u8> HLERequestContext::ReadBuffer() const {
|
|||
size_t HLERequestContext::WriteBuffer(const void* buffer, size_t size) const {
|
||||
const bool is_buffer_b{BufferDescriptorB().size() && BufferDescriptorB()[0].Size()};
|
||||
|
||||
ASSERT_MSG(size <= GetWriteBufferSize(), "Size %d is too big", size);
|
||||
ASSERT_MSG(size <= GetWriteBufferSize(), "Size %lx is too big", size);
|
||||
|
||||
if (is_buffer_b) {
|
||||
Memory::WriteBlock(BufferDescriptorB()[0].Address(), buffer, size);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue