diff options
author | Paul Gilbert | 2014-08-29 07:21:44 -0400 |
---|---|---|
committer | Paul Gilbert | 2014-08-29 07:21:44 -0400 |
commit | bbe7616a198b0220a038028337127fecfea842ca (patch) | |
tree | 0e20df129aff46a644c11147d9d6e71b6ecd7985 | |
parent | d2cb9d4c4318e9c1895e492539c755fb6e3cf052 (diff) | |
download | scummvm-rg350-bbe7616a198b0220a038028337127fecfea842ca.tar.gz scummvm-rg350-bbe7616a198b0220a038028337127fecfea842ca.tar.bz2 scummvm-rg350-bbe7616a198b0220a038028337127fecfea842ca.zip |
ACCESS: Add event polling to cmdTexChoice so conversations work
-rw-r--r-- | engines/access/scripts.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/access/scripts.cpp b/engines/access/scripts.cpp index a1ede67708..3b03a7ac41 100644 --- a/engines/access/scripts.cpp +++ b/engines/access/scripts.cpp @@ -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) { |