Skip to content

Commit

Permalink
ACCESS: Add some code for VGA mode in cmdHelp
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke authored and dreammaster committed Dec 13, 2014
1 parent 16a8d70 commit c42666f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions engines/access/amazon/amazon_scripts.cpp
Expand Up @@ -415,8 +415,14 @@ void AmazonScripts::cmdHelp() {
_game->_moreHelp = 1;
_game->_useItem = 0;
_vm->_events->hideCursor();
_vm->_screen->restoreScreen();
_vm->_screen->setPanel(0);
if (_vm->_screen->_vesaMode) {
_vm->_screen->restoreScreen();
_vm->_screen->setPanel(0);
} else {
_vm->_screen->fadeOut();
_vm->_screen->clearBuffer();
}

_vm->_screen->copyFrom(_vm->_buffer2);
_vm->_screen->restorePalette();
_vm->_screen->setPalette();
Expand Down

0 comments on commit c42666f

Please sign in to comment.