aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/cine/script.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/engines/cine/script.cpp b/engines/cine/script.cpp
index b33b9fc3ba..8bcd9b78b1 100644
--- a/engines/cine/script.cpp
+++ b/engines/cine/script.cpp
@@ -1691,7 +1691,8 @@ void o1_loadMusic() {
debugC(5, kCineDebugScript, "Line: %d: loadMusic(%s)", _currentLine, param);
- if (g_cine->getPlatform() == Common::kPlatformAmiga) {
+ if (g_cine->getPlatform() == Common::kPlatformAmiga ||
+ g_cine->getPlatform() == Common::kPlatformAtariST) {
warning("STUB: o1_loadMusic");
return;
}
@@ -1748,6 +1749,12 @@ void o1_playSample() {
int16 volume = getNextWord();
uint16 flag = getNextWord();
+ if (g_cine->getPlatform() == Common::kPlatformAmiga ||
+ g_cine->getPlatform() == Common::kPlatformAtariST) {
+ warning("STUB: o1_playSample");
+ return;
+ }
+
if (volume > 63)
volume = 63;
if (volume < 0)