mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 08:45:45 +00:00
Clean Warnings (?)
This commit is contained in:
parent
70d45b2a59
commit
1212e9e231
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