Changeset - r1513:ac571482dd6a
[Not reviewed]
master
0 1 0
tron - 19 years ago 2005-03-15 20:07:46
tron@openttd.org
(svn r2017) Explicitly mark SlReadByte as 'inline'
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
saveload.c
Show inline comments
 
@@ -60,7 +60,7 @@ static void NORETURN SlError(const char 
 
	longjmp(_sl.excpt, 0);
 
}
 

	
 
int SlReadByte(void)
 
inline int SlReadByte(void)
 
{
 
	if (_sl.bufp == _sl.bufe) SlReadFill();
 
	return *_sl.bufp++;
0 comments (0 inline, 0 general)