Skip to content

Commit

Permalink
ACCESS: Add event polling to cmdTexChoice so conversations work
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Aug 29, 2014
1 parent d2cb9d4 commit bbe7616
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions engines/access/scripts.cpp
Expand Up @@ -626,7 +626,12 @@ void Scripts::cmdTexChoice() {

int choice = -1;
do {
_vm->_events->pollEvents();
if (_vm->shouldQuit())
return;

charLoop();

_vm->_bubbleBox->_bubblePtr = _vm->_bubbleBox->_bubbleTitle.c_str();
if (_vm->_events->_leftButton) {
if (_vm->_events->_mouseRow >= 22) {
Expand Down

0 comments on commit bbe7616

Please sign in to comment.