1
0
Fork 0

(svn r24051) -Fix: Comment.

release/1.3
frosch 2012-03-19 22:52:37 +00:00
parent ee03cda858
commit 2007f7affd
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}
}