Changeset - r1510:df5cad5edd13
[Not reviewed]
master
0 1 0
tron - 19 years ago 2005-03-15 16:56:05
tron@openttd.org
(svn r2014) Don't manually inline a piece of code
1 file changed with 0 insertions and 6 deletions:
0 comments (0 inline, 0 general)
saveload.c
Show inline comments
 
@@ -230,13 +230,7 @@ static void SlCopyBytes(void *ptr, size_
 
		}
 
	} else {
 
		while(length) {
 
			// INLINED SlReadByte
 
#if !defined(_DEBUG)
 
			if (_sl.bufp == _sl.bufe) SlReadFill();
 
			*p++ = *_sl.bufp++;
 
#else
 
			*p++ = SlReadByte();
 
#endif
 
			length--;
 
		}
 
	}
0 comments (0 inline, 0 general)