MADS: Added game initialisation code

This commit is contained in:
Paul Gilbert 2014-02-23 19:33:26 -05:00
parent 1d80edb2dd
commit 8c9420a834
10 changed files with 513 additions and 13 deletions

View file

@ -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() {