aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/access/amazon/amazon_scripts.cpp5
-rw-r--r--engines/access/scripts.cpp3
2 files changed, 5 insertions, 3 deletions
diff --git a/engines/access/amazon/amazon_scripts.cpp b/engines/access/amazon/amazon_scripts.cpp
index 0ea9ee5ebe..3e7fd4e84e 100644
--- a/engines/access/amazon/amazon_scripts.cpp
+++ b/engines/access/amazon/amazon_scripts.cpp
@@ -449,8 +449,9 @@ void AmazonScripts::cmdHelp() {
error("TODO: more cmdHelp");
}
-void AmazonScripts::cmdCycleBack() {
- _vm->_screen->cyclePaletteBackwards();
+void AmazonScripts::cmdCycleBack() {
+ if (_vm->_startup == -1)
+ _vm->_screen->cyclePaletteBackwards();
}
void AmazonScripts::cmdChapter() {
int chapter = _data->readByte();
diff --git a/engines/access/scripts.cpp b/engines/access/scripts.cpp
index 2aa10b6b4a..c46d7b972f 100644
--- a/engines/access/scripts.cpp
+++ b/engines/access/scripts.cpp
@@ -522,7 +522,8 @@ void Scripts::cmdSetCycle() {
}
void Scripts::cmdCycle() {
- _vm->_screen->cyclePaletteForward();
+ if (_vm->_startup == -1)
+ _vm->_screen->cyclePaletteForward();
}
void Scripts::cmdCharSpeak() {