(svn r2014) Don't manually inline a piece of code

pull/155/head
tron 20 years ago
parent 452c7c2067
commit dfee376190

@ -230,13 +230,7 @@ static void SlCopyBytes(void *ptr, size_t length)
}
} else {
while(length) {
// INLINED SlReadByte
#if !defined(_DEBUG)
if (_sl.bufp == _sl.bufe) SlReadFill();
*p++ = *_sl.bufp++;
#else
*p++ = SlReadByte();
#endif
length--;
}
}

Loading…
Cancel
Save