Renamed decodeILBM to decodePBM, removed a TODO

svn-id: r26731
This commit is contained in:
Filippos Karapetis 2007-05-01 21:40:56 +00:00
parent 40f43a687b
commit d08eeff700
3 changed files with 3 additions and 7 deletions

View file

@ -304,7 +304,7 @@ void PackBitsReadStream::unpack() {
}
void decodeILBM(Common::ReadStream &input, Surface &surface, byte *&colors) {
void decodePBM(Common::ReadStream &input, Surface &surface, byte *&colors) {
PBMDecoder decoder(input, surface, colors);
decoder.decode();
}