mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 16:49:58 -06:00
Replace uses of cassert with Common/Assert.h
This commit is contained in:
@ -5,7 +5,6 @@
|
||||
#include "Core/NetPlayClient.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <cassert>
|
||||
#include <cstddef>
|
||||
#include <cstring>
|
||||
#include <fstream>
|
||||
@ -2026,7 +2025,7 @@ bool NetPlayClient::WiimoteUpdate(int _number, u8* data, const std::size_t size,
|
||||
}
|
||||
}
|
||||
|
||||
assert(nw.data.size() == size);
|
||||
ASSERT(nw.data.size() == size);
|
||||
std::copy(nw.data.begin(), nw.data.end(), data);
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user