aboutsummaryrefslogtreecommitdiff
path: root/graphics/font.cpp
diff options
context:
space:
mode:
authorMax Horn2008-09-03 15:58:40 +0000
committerMax Horn2008-09-03 15:58:40 +0000
commite802acca0b09a8e0475dbfbe2e6f6a865072e26d (patch)
tree3f8ee651a73867d9ad3fc3adf9484062e50e3871 /graphics/font.cpp
parent55a05dc0f4c7141de44008148bbcb7add4c1b078 (diff)
downloadscummvm-rg350-e802acca0b09a8e0475dbfbe2e6f6a865072e26d.tar.gz
scummvm-rg350-e802acca0b09a8e0475dbfbe2e6f6a865072e26d.tar.bz2
scummvm-rg350-e802acca0b09a8e0475dbfbe2e6f6a865072e26d.zip
TODO: bdf_getline seems to duplicate code from SeekableReadStream::readLine(_new) -> fix that
svn-id: r34309
Diffstat (limited to 'graphics/font.cpp')
-rw-r--r--graphics/font.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/graphics/font.cpp b/graphics/font.cpp
index 0b0405b4b4..0f67899706 100644
--- a/graphics/font.cpp
+++ b/graphics/font.cpp
@@ -513,6 +513,7 @@ int bdf_read_bitmaps(Common::SeekableReadStream &fp, NewFontData* pf) {
}
/* read the next non-comment line, returns buf or NULL if EOF*/
+// TODO: Can we use SeekableReadStream::readLine resp. readLine_NEW instead?
char *bdf_getline(Common::SeekableReadStream &fp, char *buf, int len) {
int c;
char *b;