diff options
author | uruk | 2013-07-18 22:33:08 +0200 |
---|---|---|
committer | uruk | 2013-07-18 22:33:08 +0200 |
commit | 467246c00416d9ed9896d8bcd1eb72e3cd5d151a (patch) | |
tree | 5acd4fcd09cd78c4b8a17f3919e980a51a218619 | |
parent | e5614ef0dcd185b9fd65a5641d785ff6e4edabda (diff) | |
download | scummvm-rg350-467246c00416d9ed9896d8bcd1eb72e3cd5d151a.tar.gz scummvm-rg350-467246c00416d9ed9896d8bcd1eb72e3cd5d151a.tar.bz2 scummvm-rg350-467246c00416d9ed9896d8bcd1eb72e3cd5d151a.zip |
AVALANCHE: Add refreshScreen() to every iteration of the main loop in Avalot::run().
-rw-r--r-- | engines/avalanche/avalot.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/avalanche/avalot.cpp b/engines/avalanche/avalot.cpp index 0415f95f73..ecd1095cfb 100644 --- a/engines/avalanche/avalot.cpp +++ b/engines/avalanche/avalot.cpp @@ -172,6 +172,8 @@ void Avalot::run(Common::String arg) { _vm->_timeout.one_tick(); + _vm->_graph.refreshScreen(); // TODO: Maybe it'll have a better place later. Move it there when it's needed. + } while (false /*! _vm->_gyro.lmo*/); // So we run only one cycle during the testing. Of course it will be restored later. //restorecrtmode(); |