forked from mirror/OpenTTD
(svn r2654) SlWriteUint16() should have a uint16 as parameter, not some arbitrary enum
This commit is contained in:
@@ -121,7 +121,7 @@ static inline uint64 SlReadUint64(void)
|
|||||||
return (uint64)x << 32 | y;
|
return (uint64)x << 32 | y;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void SlWriteUint16(VarType v)
|
static inline void SlWriteUint16(uint16 v)
|
||||||
{
|
{
|
||||||
SlWriteByte((byte)(v >> 8));
|
SlWriteByte((byte)(v >> 8));
|
||||||
SlWriteByte((byte)v);
|
SlWriteByte((byte)v);
|
||||||
|
Reference in New Issue
Block a user