mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-12 10:30:28 +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);
|
||||
}
|
||||
}
|
||||
FioSkipBytes(len - 1); // <type> is not included in the length for pseudo-sprites.
|
||||
FioSkipBytes(len - 1); // already read <action>
|
||||
break;
|
||||
|
||||
case 0xFE:
|
||||
@ -6979,13 +6979,13 @@ static void GRFSound(ByteReader *buf)
|
||||
if (FioReadByte() != 0) grfmsg(1, "GRFSound: Import type mismatch");
|
||||
ImportGRFSound();
|
||||
} else {
|
||||
FioSkipBytes(len - 1);
|
||||
FioSkipBytes(len - 1); // already read <action>
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
grfmsg(1, "GRFSound: Unexpected Action %x found, skipping", action);
|
||||
FioSkipBytes(len - 1);
|
||||
FioSkipBytes(len - 1); // already read <action>
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user