mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-12 09:09:09 +00:00
(svn r2017) Explicitly mark SlReadByte as 'inline'
This commit is contained in:
@@ -60,7 +60,7 @@ static void NORETURN SlError(const char *msg)
|
||||
longjmp(_sl.excpt, 0);
|
||||
}
|
||||
|
||||
int SlReadByte(void)
|
||||
inline int SlReadByte(void)
|
||||
{
|
||||
if (_sl.bufp == _sl.bufe) SlReadFill();
|
||||
return *_sl.bufp++;
|
||||
|
Reference in New Issue
Block a user