ACCESS: Add missing _startup checks to palette cycling opcodes

This commit is contained in:
Paul Gilbert 2014-11-01 22:25:41 -04:00
parent f3063a13f0
commit c038452588
2 changed files with 5 additions and 3 deletions

View file

@ -522,7 +522,8 @@ void Scripts::cmdSetCycle() {
}
void Scripts::cmdCycle() {
_vm->_screen->cyclePaletteForward();
if (_vm->_startup == -1)
_vm->_screen->cyclePaletteForward();
}
void Scripts::cmdCharSpeak() {