aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/script.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/agos/script.cpp')
-rw-r--r--engines/agos/script.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/agos/script.cpp b/engines/agos/script.cpp
index 2d9f2c91ab..9c93288e0e 100644
--- a/engines/agos/script.cpp
+++ b/engines/agos/script.cpp
@@ -110,7 +110,8 @@ void AGOSEngine::o_eq() {
#ifdef __DS__
// HACK: Skip attempt to read Calypso's letter manually,
// due to speech segment been too large to fit into memory
- if (getGameType() == GType_SIMON1 && (getFeatures() & GF_TALKIE) && _currentTable) {
+ if (getGameType() == GType_SIMON1 && (getFeatures() & GF_TALKIE) &&
+ getPlatform() == Common::kPlatformWindows && _currentTable) {
if (_currentTable->id == 71 && tmp == 1 && tmp2 == 1) {
setScriptCondition(false);
return;
@@ -444,7 +445,8 @@ void AGOSEngine::o_process() {
#ifdef __DS__
// HACK: Skip scene of Simon reading letter from Calypso
// due to speech segment been too large to fit into memory
- if (getGameType() == GType_SIMON1 && (getFeatures() & GF_TALKIE) && sub->id == 2922) {
+ if (getGameType() == GType_SIMON1 && (getFeatures() & GF_TALKIE) &&
+ getPlatform() == Common::kPlatformWindows && sub->id == 2922) {
// set parent special
_noParentNotify = true;
setItemParent(derefItem(16), me());