made most stuff in gui class protected, as it should be; moved internal definitions from gui.h to gui.cpp; added up/down arrows to save dialog (ugly, but better than nothing IMO

svn-id: r4234
This commit is contained in:
Max Horn 2002-05-08 00:27:09 +00:00
parent d3ceb767d8
commit 02a75c0521
5 changed files with 143 additions and 62 deletions

View file

@ -153,7 +153,7 @@ void Scumm::drawDirtyScreenParts()
}
/* Handle shaking */
if (_shakeEnabled && !_gui->_active) {
if (_shakeEnabled && !_gui->isActive()) {
_shakeFrame = (_shakeFrame + 1) & (NUM_SHAKE_POSITIONS - 1);
_system->set_shake_pos(shake_positions[_shakeFrame]);
}