mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-12 18:40:29 +00:00
(svn r24051) -Fix: Comment.
This commit is contained in:
parent
ee03cda858
commit
2007f7affd
@ -6969,7 +6969,7 @@ static void GRFSound(ByteReader *buf)
|
|||||||
LoadGRFSound(offs);
|
LoadGRFSound(offs);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
FioSkipBytes(len - 1); // <type> is not included in the length for pseudo-sprites.
|
FioSkipBytes(len - 1); // already read <action>
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 0xFE:
|
case 0xFE:
|
||||||
@ -6979,13 +6979,13 @@ static void GRFSound(ByteReader *buf)
|
|||||||
if (FioReadByte() != 0) grfmsg(1, "GRFSound: Import type mismatch");
|
if (FioReadByte() != 0) grfmsg(1, "GRFSound: Import type mismatch");
|
||||||
ImportGRFSound();
|
ImportGRFSound();
|
||||||
} else {
|
} else {
|
||||||
FioSkipBytes(len - 1);
|
FioSkipBytes(len - 1); // already read <action>
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
grfmsg(1, "GRFSound: Unexpected Action %x found, skipping", action);
|
grfmsg(1, "GRFSound: Unexpected Action %x found, skipping", action);
|
||||||
FioSkipBytes(len - 1);
|
FioSkipBytes(len - 1); // already read <action>
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user