Skip to content

Commit

Permalink
ACCESS: Add some more checks for the floppy version
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke authored and dreammaster committed Dec 13, 2014
1 parent 8d97dc9 commit 98685b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/access/amazon/amazon_game.cpp
Expand Up @@ -232,7 +232,7 @@ void AmazonEngine::doEstablish(int screenId, int estabIndex) {
_printEnd = 155;
Common::String msg((const char *)_establish->data() + msgOffset);

if (_txtPages == 0) {
if ((_txtPages == 0) || !isCD()) {
printText(_screen, msg);
} else {
speakText(_screen, msg);
Expand Down Expand Up @@ -569,7 +569,7 @@ void AmazonEngine::startChapter(int chapter) {

Common::String msg((const char *)_establish->data() + msgOffset);

if (_txtPages == 0) {
if ((_txtPages == 0) || !isCD()) {
printText(_screen, msg);
} else {
speakText(_screen, msg);
Expand Down

0 comments on commit 98685b9

Please sign in to comment.