changeset 1510 | cc6f925bf380 |
parent 1405 | 2bddc270e2c9 |
child 1513 | 3f1e9834f991 |
1509:2c232b7d2114 | 1510:cc6f925bf380 |
---|---|
228 SlWriteByte(*p++); |
228 SlWriteByte(*p++); |
229 length--; |
229 length--; |
230 } |
230 } |
231 } else { |
231 } else { |
232 while(length) { |
232 while(length) { |
233 // INLINED SlReadByte |
|
234 #if !defined(_DEBUG) |
|
235 if (_sl.bufp == _sl.bufe) SlReadFill(); |
|
236 *p++ = *_sl.bufp++; |
|
237 #else |
|
238 *p++ = SlReadByte(); |
233 *p++ = SlReadByte(); |
239 #endif |
|
240 length--; |
234 length--; |
241 } |
235 } |
242 } |
236 } |
243 } |
237 } |
244 |
238 |