aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--engines/agos/vga.cpp1
2 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index b896a2c84a..c15aec08e9 100644
--- a/NEWS
+++ b/NEWS
@@ -23,9 +23,12 @@ For a more comprehensive changelog for the latest experimental SVN code, see:
0.13.1 (2009-04-27)
AGOS:
+ - Fixed crash after OmniTV video is played in The Feeble Files
- Fixed crashes when exploring Jack the Ripper scene in the PC version of
the Waxworks
- Fixed palette glitches in the AtariST version of Elvira 2
+ - Fixed noise that can occur when sound effects are played, when exploring
+ Pyramid scene in the Waxworks
Gob:
- Fixed a crash in the Italian version of Woodruff
diff --git a/engines/agos/vga.cpp b/engines/agos/vga.cpp
index 3d85406afd..a77555ba02 100644
--- a/engines/agos/vga.cpp
+++ b/engines/agos/vga.cpp
@@ -1147,6 +1147,7 @@ void AGOSEngine::vc27_resetSprite() {
if (getGameType() == GType_SIMON2 || getGameType() == GType_FF || getGameType() == GType_PP)
vcWriteVar(254, 0);
+ // Stop any OmniTV video that is currently been played
if (getGameType() == GType_FF || getGameType() == GType_PP)
setBitFlag(42, true);