aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/special.cpp
diff options
context:
space:
mode:
authorStrangerke2015-12-27 11:00:05 +0100
committerStrangerke2015-12-27 11:00:05 +0100
commit9bc8d25b024693434835c6f9012719c2f2f4bbe3 (patch)
tree2179f1bffc3e5cfb2dad0c5b171789dbfdcc96f6 /engines/lab/special.cpp
parentbc368c6967b029da486d1095e9f1af0037fd9a0a (diff)
downloadscummvm-rg350-9bc8d25b024693434835c6f9012719c2f2f4bbe3.tar.gz
scummvm-rg350-9bc8d25b024693434835c6f9012719c2f2f4bbe3.tar.bz2
scummvm-rg350-9bc8d25b024693434835c6f9012719c2f2f4bbe3.zip
LAB: Remove a useless assignment
Diffstat (limited to 'engines/lab/special.cpp')
-rw-r--r--engines/lab/special.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lab/special.cpp b/engines/lab/special.cpp
index 62eeb75bb3..5f5b523fb0 100644
--- a/engines/lab/special.cpp
+++ b/engines/lab/special.cpp
@@ -333,7 +333,7 @@ void LabEngine::drawMonText(const char *text, TextFont *monitorFont, Common::Rec
curText = text + charsDrawn;
_lastPage = (*curText == 0);
- charsDrawn = _graphics->flowText(monitorFont, yspacing, 2, 0, false, false, false, true, textRect, curText);
+ _graphics->flowText(monitorFont, yspacing, 2, 0, false, false, false, true, textRect, curText);
_event->mouseShow();
}