mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-16 00:12:51 +00:00
(svn r1004) Fix harmless typo (comma instead of semicolon)
This commit is contained in:
parent
c669c94ba3
commit
ea8311301e
@ -26,7 +26,7 @@ Order UnpackOldOrder(uint16 packed)
|
|||||||
{
|
{
|
||||||
Order order;
|
Order order;
|
||||||
order.type = (packed & 0x000f);
|
order.type = (packed & 0x000f);
|
||||||
order.flags = (packed & 0x00f0) >> 4,
|
order.flags = (packed & 0x00f0) >> 4;
|
||||||
order.station = (packed & 0xff00) >> 8;
|
order.station = (packed & 0xff00) >> 8;
|
||||||
|
|
||||||
// Sanity check
|
// Sanity check
|
||||||
|
Loading…
Reference in New Issue
Block a user