diff options
author | Paweł Kołodziejski | 2008-03-09 08:30:24 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2008-03-09 08:30:24 +0000 |
commit | 28a87c97750d0756db4e81cb8acbe1daf8f8e96f (patch) | |
tree | 375b7d32b2316a741570e92752516afb669bc827 /engines | |
parent | b7f0ba7860d94876d6f31999a397427be0ff16e3 (diff) | |
download | scummvm-rg350-28a87c97750d0756db4e81cb8acbe1daf8f8e96f.tar.gz scummvm-rg350-28a87c97750d0756db4e81cb8acbe1daf8f8e96f.tar.bz2 scummvm-rg350-28a87c97750d0756db4e81cb8acbe1daf8f8e96f.zip |
changed moment of increasing num_ejec
svn-id: r31075
Diffstat (limited to 'engines')
-rw-r--r-- | engines/drascula/drascula.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/drascula/drascula.cpp b/engines/drascula/drascula.cpp index 6b58cfa140..710dc685ac 100644 --- a/engines/drascula/drascula.cpp +++ b/engines/drascula/drascula.cpp @@ -123,7 +123,7 @@ int DrasculaEngine::init() { } int DrasculaEngine::go() { - num_ejec = 0; + num_ejec = 1; // values from 1 to 6 will start each part of game hay_que_load = 0; for (;;) { @@ -170,8 +170,6 @@ int DrasculaEngine::go() { con_voces = 0; hay_seleccion = 0; - num_ejec++; - if (num_ejec != 6) { lee_dibujos("95.alg"); descomprime_dibujo(dir_mesa, 1); @@ -252,6 +250,8 @@ int DrasculaEngine::go() { salir_al_dos(0); if (num_ejec == 6) break; + + num_ejec++; } return 0; |