Skip to content

Commit

Permalink
TSAGE: Correct R2R width of conversation dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Jul 28, 2013
1 parent 2fefa91 commit 40f8250
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion engines/tsage/converse.cpp
Expand Up @@ -444,7 +444,8 @@ int ConversationChoiceDialog::execute(const Common::StringArray &choiceList) {
_bounds.bottom -= 10;
yp = 180 - _bounds.height();
_bounds.translate(0, yp);
_bounds.right = _bounds.left + 280;
_bounds.setWidth(textMaxWidth() + 15);
_bounds.moveTo(160 - (_bounds.width() / 2), _bounds.top);

// Draw the dialog
draw();
Expand Down

0 comments on commit 40f8250

Please sign in to comment.