diff options
Diffstat (limited to 'engines/access/scripts.cpp')
-rw-r--r-- | engines/access/scripts.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/access/scripts.cpp b/engines/access/scripts.cpp index d6f65a69c9..833aff337a 100644 --- a/engines/access/scripts.cpp +++ b/engines/access/scripts.cpp @@ -503,7 +503,7 @@ void Scripts::cmdCharSpeak() { void Scripts::cmdTexSpeak() { _vm->_screen->_printOrg = _texsOrg; _vm->_screen->_printStart = _texsOrg; - _vm->_bubbleBox->_maxChars = 20; + _vm->_screen->_maxChars = 20; byte v; Common::String tmpStr = ""; @@ -540,8 +540,8 @@ void Scripts::cmdTexChoice() { _vm->_fonts._charSet._hi = 8; _vm->_fonts._charFor._lo = 55; _vm->_fonts._charFor._hi = 255; - _vm->_bubbleBox->_maxChars = 20; + _vm->_screen->_maxChars = 20; _vm->_screen->_printOrg = _texsOrg; _vm->_screen->_printStart = _texsOrg; |