aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/dialogs.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2014-02-23 19:33:26 -0500
committerPaul Gilbert2014-02-23 19:33:26 -0500
commit8c9420a8349b0cdb93dcace36c2bd5f93e03476f (patch)
tree11e48162e9644e526ac31bc30072abecb32bd150 /engines/mads/dialogs.cpp
parent1d80edb2dd092b7e91805f359f0e2a7d470ed7c4 (diff)
downloadscummvm-rg350-8c9420a8349b0cdb93dcace36c2bd5f93e03476f.tar.gz
scummvm-rg350-8c9420a8349b0cdb93dcace36c2bd5f93e03476f.tar.bz2
scummvm-rg350-8c9420a8349b0cdb93dcace36c2bd5f93e03476f.zip
MADS: Added game initialisation code
Diffstat (limited to 'engines/mads/dialogs.cpp')
-rw-r--r--engines/mads/dialogs.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/engines/mads/dialogs.cpp b/engines/mads/dialogs.cpp
index c6049c3c1a..34a0b86abc 100644
--- a/engines/mads/dialogs.cpp
+++ b/engines/mads/dialogs.cpp
@@ -285,15 +285,16 @@ void TextDialog::draw() {
}
void TextDialog::drawWithInput() {
- int innerWidth = _innerWidth;
- int lineHeight = _vm->_font->getHeight() + 1;
- int xp = _position.x + 5;
+ //int innerWidth = _innerWidth;
+ //int lineHeight = _vm->_font->getHeight() + 1;
+ //int xp = _position.x + 5;
// Draw the content of the dialog
drawContent(Common::Rect(_position.x + 2, _position.y + 2,
_position.x + _width - 2, _position.y + _height - 2), 0,
TEXTDIALOG_CONTENT1, TEXTDIALOG_CONTENT2);
-
+
+ error("TODO: drawWithInput");
}
void TextDialog::restorePalette() {