diff options
author | Paweł Kołodziejski | 2008-03-09 08:27:27 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2008-03-09 08:27:27 +0000 |
commit | b7f0ba7860d94876d6f31999a397427be0ff16e3 (patch) | |
tree | beeb97814e9e34a16f0a5430dad731259d33f61b /engines/drascula | |
parent | 9a2a260ec7a681f9095161f398061326074f64d3 (diff) | |
download | scummvm-rg350-b7f0ba7860d94876d6f31999a397427be0ff16e3.tar.gz scummvm-rg350-b7f0ba7860d94876d6f31999a397427be0ff16e3.tar.bz2 scummvm-rg350-b7f0ba7860d94876d6f31999a397427be0ff16e3.zip |
fixed icons in part 5
svn-id: r31074
Diffstat (limited to 'engines/drascula')
-rw-r--r-- | engines/drascula/drascula.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/engines/drascula/drascula.cpp b/engines/drascula/drascula.cpp index a5d20a9009..6b58cfa140 100644 --- a/engines/drascula/drascula.cpp +++ b/engines/drascula/drascula.cpp @@ -776,13 +776,18 @@ bucles: void DrasculaEngine::agarra_objeto(int objeto) { if (num_ejec == 6) lee_dibujos("iconsp.alg"); - else if (num_ejec == 4 || num_ejec == 5) + else if (num_ejec == 4) lee_dibujos("icons2.alg"); + else if (num_ejec == 5) + lee_dibujos("icons3.alg"); else lee_dibujos("icons.alg"); descomprime_dibujo(dir_hare_fondo, 1); elige_objeto(objeto); - lee_dibujos("99.alg"); + if (num_ejec == 2) + lee_dibujos(fondo_y_menu); + else + lee_dibujos("99.alg"); descomprime_dibujo(dir_hare_fondo, 1); } |