mirror of
https://github.com/zeldaret/ss
synced 2026-07-08 13:56:15 -04:00
remove non-matching comment
This commit is contained in:
@@ -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];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user