diff options
author | Paweł Kołodziejski | 2008-03-09 08:52:52 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2008-03-09 08:52:52 +0000 |
commit | 5bf23671e50e0eba03e95bb480504c79fa2eea83 (patch) | |
tree | 170d94ab37f2ee1c347a7b711d8e23a6b7ebce88 /engines | |
parent | aceaabc5d280ea35eaf0c20dc5c86130bf185c04 (diff) | |
download | scummvm-rg350-5bf23671e50e0eba03e95bb480504c79fa2eea83.tar.gz scummvm-rg350-5bf23671e50e0eba03e95bb480504c79fa2eea83.tar.bz2 scummvm-rg350-5bf23671e50e0eba03e95bb480504c79fa2eea83.zip |
fixes to diffrent parts of game
svn-id: r31077
Diffstat (limited to 'engines')
-rw-r--r-- | engines/drascula/drascula.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/engines/drascula/drascula.cpp b/engines/drascula/drascula.cpp index 686c0c2301..c36f464479 100644 --- a/engines/drascula/drascula.cpp +++ b/engines/drascula/drascula.cpp @@ -1692,10 +1692,12 @@ martini: if (musica_room == 0) stopmusic(); - if (num_ejec != 6) { - if ((!strcmp(num_room, "9.alg")) || (strcmp(num_room, "2.alg")) - || (!strcmp(num_room, "14.alg")) || (!strcmp(num_room, "18.alg")) - || (!strcmp(num_room, "26.alg"))) + if (num_ejec == 2) { + if ((!strcmp(num_room, "9.alg")) || (strcmp(num_room, "2.alg")) || (!strcmp(num_room, "14.alg")) || (!strcmp(num_room, "18.alg"))) + conta_ciego_vez = vez(); + } + if (num_ejec == 4) { + if (!strcmp(num_room, "26.alg")) conta_ciego_vez = vez(); } if (!strcmp(num_room, "24.alg") && flags[29] == 1) |