diff options
author | Torbjörn Andersson | 2010-09-23 20:01:08 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2010-09-23 20:01:08 +0000 |
commit | b7911ef0f4342f0d69f9aaf3c9e59f9f7b4ced7b (patch) | |
tree | 8c8a8065b40a73e619dc3ed7a6490b5c82dbaca9 /engines | |
parent | cc4a01433517b683ce9db7f912b269fcc9aa3eb3 (diff) | |
download | scummvm-rg350-b7911ef0f4342f0d69f9aaf3c9e59f9f7b4ced7b.tar.gz scummvm-rg350-b7911ef0f4342f0d69f9aaf3c9e59f9f7b4ced7b.tar.bz2 scummvm-rg350-b7911ef0f4342f0d69f9aaf3c9e59f9f7b4ced7b.zip |
DRASCULA: Play the English "von Braun" track
The workaround is no longer needed since we provide the previously
missing track. It shouldn't break the game if you play from the CD
either, as the timing appears to be hardwired rather than keyed to
the music.
svn-id: r52866
Diffstat (limited to 'engines')
-rw-r--r-- | engines/drascula/animation.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/engines/drascula/animation.cpp b/engines/drascula/animation.cpp index d6a3bafd9f..10f1bf4651 100644 --- a/engines/drascula/animation.cpp +++ b/engines/drascula/animation.cpp @@ -761,17 +761,10 @@ void DrasculaEngine::animation_16_2() { clearRoom(); - // FIXME: Track 31 is missing from the soundtrack available - // from ScummVM's downloads page, so for now we're using the - // Spanish track 29 -#if 1 - playMusic(30); -#else if (_lang == kSpanish) playMusic(30); else playMusic(32); -#endif if (getScan() != 0) goto asco; |