aboutsummaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorFilippos Karapetis2007-05-01 21:40:56 +0000
committerFilippos Karapetis2007-05-01 21:40:56 +0000
commitd08eeff7002d7296b2367242b66ca2e03c1ce4a1 (patch)
tree47472179a8ac372153eb12c50151e49b72e9c4e7 /graphics
parent40f43a687be84baec357e55f9d1a01ecfe829bfa (diff)
downloadscummvm-rg350-d08eeff7002d7296b2367242b66ca2e03c1ce4a1.tar.gz
scummvm-rg350-d08eeff7002d7296b2367242b66ca2e03c1ce4a1.tar.bz2
scummvm-rg350-d08eeff7002d7296b2367242b66ca2e03c1ce4a1.zip
Renamed decodeILBM to decodePBM, removed a TODO
svn-id: r26731
Diffstat (limited to 'graphics')
-rw-r--r--graphics/iff.cpp2
-rw-r--r--graphics/iff.h6
2 files changed, 2 insertions, 6 deletions
diff --git a/graphics/iff.cpp b/graphics/iff.cpp
index c45a9eb850..7ab34e2989 100644
--- a/graphics/iff.cpp
+++ b/graphics/iff.cpp
@@ -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();
}
diff --git a/graphics/iff.h b/graphics/iff.h
index 740f4b6d8c..322c372592 100644
--- a/graphics/iff.h
+++ b/graphics/iff.h
@@ -92,11 +92,7 @@ public:
void decode();
};
-/*
- TODO: rename this routine to decodePBM, and update the SAGA code that's
- using it. The routine has already been implemented using the above PBMDecoder.
-*/
-void decodeILBM(Common::ReadStream &input, Surface &surface, byte *&colors);
+void decodePBM(Common::ReadStream &input, Surface &surface, byte *&colors);
/*