Add FF support to dump_bitmap()
svn-id: r21464
This commit is contained in:
parent
23c692f09f
commit
3bb25707b2
4 changed files with 26 additions and 8 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue