i am totally blank

This commit is contained in:
Lowly Worm 2017-07-27 11:01:56 -07:00
parent 278d877f5e
commit 5ea6f5ae21

View File

@ -143,8 +143,8 @@ R_API void r_mem_copybits_delta(ut8 *dst, int doff, const ut8 *src, int soff, in
eprintf ("SHIT SHIT SHIT!\n");
}
for (int i = 0; i < bits; ++i) {
ut8 c = readbit (src, bits + soff);
writebit (dst, bits + soff, c);
ut8 c = readbit (src, i + soff);
writebit (dst, i + soff, c);
}
}