Add FF support to dump_bitmap()

svn-id: r21464
This commit is contained in:
Travis Howell 2006-03-27 12:49:17 +00:00
parent 23c692f09f
commit 3bb25707b2
4 changed files with 26 additions and 8 deletions

View file

@ -23,6 +23,7 @@
// Item script opcodes for Simon1/Simon2
#include "common/stdafx.h"
#include "simon/dxa_player.h"
#include "simon/simon.h"
#include "simon/intern.h"
@ -1079,6 +1080,12 @@ int SimonEngine::runScript() {
case 183:{ /* unload beard */
if (getGameType() == GType_FF) {
DXA_Player p;
if (p.open((const char *)"icetrench.dxa")) {
p.play();
p.close();
}
// Play video
debug(1, "Play video");
} else if (getGameType() == GType_SIMON2) {