mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 14:27:16 +00:00
(svn r2654) SlWriteUint16() should have a uint16 as parameter, not some arbitrary enum
This commit is contained in:
parent
3720503e7c
commit
4130198f48
@ -121,7 +121,7 @@ static inline uint64 SlReadUint64(void)
|
||||
return (uint64)x << 32 | y;
|
||||
}
|
||||
|
||||
static inline void SlWriteUint16(VarType v)
|
||||
static inline void SlWriteUint16(uint16 v)
|
||||
{
|
||||
SlWriteByte((byte)(v >> 8));
|
||||
SlWriteByte((byte)v);
|
||||
|
Loading…
Reference in New Issue
Block a user