aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/screen_lol.cpp
diff options
context:
space:
mode:
authorFlorian Kagerer2009-03-08 23:28:19 +0000
committerFlorian Kagerer2009-03-08 23:28:19 +0000
commit6cb3f665aff572fdbdb12c940ace9c4bfe912138 (patch)
tree67d00c26b63633c7445e6db84cf3a9f7deaed9b1 /engines/kyra/screen_lol.cpp
parent2abfb968a601031e211e01d742f7d78f9b5e8134 (diff)
downloadscummvm-rg350-6cb3f665aff572fdbdb12c940ace9c4bfe912138.tar.gz
scummvm-rg350-6cb3f665aff572fdbdb12c940ace9c4bfe912138.tar.bz2
scummvm-rg350-6cb3f665aff572fdbdb12c940ace9c4bfe912138.zip
LOL: some more work on the text displayer so that it handles longer texts (needed for some library books)
svn-id: r39249
Diffstat (limited to 'engines/kyra/screen_lol.cpp')
-rw-r--r--engines/kyra/screen_lol.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/engines/kyra/screen_lol.cpp b/engines/kyra/screen_lol.cpp
index 615dd0c4b3..884dee4712 100644
--- a/engines/kyra/screen_lol.cpp
+++ b/engines/kyra/screen_lol.cpp
@@ -92,11 +92,6 @@ void Screen_LoL::clearDim(int dim) {
fillRect(tmp->sx << 3, tmp->sy, ((tmp->sx + tmp->w) << 3) - 1, (tmp->sy + tmp->h) - 1, tmp->unkA);
}
-void Screen_LoL::clearCurDim() {
- fillRect(_curDim->sx << 3, _curDim->sy, ((_curDim->sx + _curDim->w) << 3) - 1, (_curDim->sy + _curDim->h) - 1, _curDim->unkA);
- _dimLineCount = 0;
-}
-
void Screen_LoL::fprintString(const char *format, int x, int y, uint8 col1, uint8 col2, uint16 flags, ...) {
debugC(9, kDebugLevelScreen, "Screen_LoL::fprintString('%s', %d, %d, %d, %d, %d, ...)", format, x, y, col1, col2, flags);
if (!format)