fix: assertion was inverted

This commit is contained in:
2025-08-28 10:57:00 +02:00
parent bc8803525d
commit 15942b47f5

View File

@@ -14,7 +14,7 @@ static void mvchunks(u8 *restrict buf, u8 *src, u8 *dst, int src_s, int src_e) {
assert(src > dst);
u32 *table = (u32 *)buf;
size_t len = src - dst; // acquire the amount of bytes that we shall move
assert(len % 0x1000);
assert(!(len % 0x1000));
// count how many bytes we need to move, whilst updating location data
size_t blen = 0;