Fix byte reads

svn-id: r13596
This commit is contained in:
Max Horn 2004-04-17 12:42:40 +00:00
parent e17a15d96e
commit ae50adfd31

View file

@ -265,9 +265,9 @@ uint32 File::read(void *ptr, uint32 len) {
if (_encbyte != 0) {
uint32 t_size = real_len;
do {
while (t_size--) {
*ptr2++ ^= _encbyte;
} while (--t_size);
}
}
return real_len;