remove non-matching comment

This commit is contained in:
elijah-thomas774
2025-11-22 20:51:01 -05:00
parent 2b0e4985ff
commit 2d799f25a3
-3
View File
@@ -28,9 +28,6 @@ int LMSi_MemCmp(const void *p1, const void *p2, int n) {
}
void LMSi_MemCopy(void *p1, const void *p2, int n) {
// https://decomp.me/scratch/JOWiM
// NONMATCHING - register usage too optimal
// Look, how difficult can an unrolled memcopy be to match
for (int i = 0; i < n; i++) {
((char *)p1)[i] = ((const char *)p2)[i];
}