diff options
-rw-r--r-- | engines/access/char.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/access/char.cpp b/engines/access/char.cpp index 2afb81db30..cbe1d5d3d9 100644 --- a/engines/access/char.cpp +++ b/engines/access/char.cpp @@ -164,6 +164,10 @@ void CharManager::charMenu() { } else error("Game not supported"); + // Make a backup copy of the screen including the character buttons, + // for restoring when erasing conversation boxes + screen.copyTo(&_vm->_buffer1); + screen.restoreScreen(); delete spr; } |