(svn r1004) Fix harmless typo (comma instead of semicolon)

This commit is contained in:
tron 2004-12-10 13:02:47 +00:00
parent c669c94ba3
commit ea8311301e
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ Order UnpackOldOrder(uint16 packed)
{
Order order;
order.type = (packed & 0x000f);
order.flags = (packed & 0x00f0) >> 4,
order.flags = (packed & 0x00f0) >> 4;
order.station = (packed & 0xff00) >> 8;
// Sanity check