diff options
author | Travis Howell | 2009-04-22 12:44:58 +0000 |
---|---|---|
committer | Travis Howell | 2009-04-22 12:44:58 +0000 |
commit | 3591548003bb3df122c7ed840fb0afe78b9c3bec (patch) | |
tree | 20d741391111aec2f3ebd77ac1158f5def5ae5d4 | |
parent | d6247fa0e00aa2027c2f03b9863989144a20507b (diff) | |
download | scummvm-rg350-3591548003bb3df122c7ed840fb0afe78b9c3bec.tar.gz scummvm-rg350-3591548003bb3df122c7ed840fb0afe78b9c3bec.tar.bz2 scummvm-rg350-3591548003bb3df122c7ed840fb0afe78b9c3bec.zip |
Sync.
svn-id: r40075
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | engines/agos/vga.cpp | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -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); |