diff options
author | Filippos Karapetis | 2008-05-31 00:15:01 +0000 |
---|---|---|
committer | Filippos Karapetis | 2008-05-31 00:15:01 +0000 |
commit | b33662e27f37e9fe6462fff767a47eeebd07ff23 (patch) | |
tree | 5ca17bf490942e567ae70417d3864bdd421171de /engines/drascula | |
parent | 178e4e805f7ba5ffc59bc374761dd8700e310d4c (diff) | |
download | scummvm-rg350-b33662e27f37e9fe6462fff767a47eeebd07ff23.tar.gz scummvm-rg350-b33662e27f37e9fe6462fff767a47eeebd07ff23.tar.bz2 scummvm-rg350-b33662e27f37e9fe6462fff767a47eeebd07ff23.zip |
rompo_y_salgo -> breakOut
svn-id: r32410
Diffstat (limited to 'engines/drascula')
-rw-r--r-- | engines/drascula/animation.cpp | 12 | ||||
-rw-r--r-- | engines/drascula/drascula.cpp | 8 | ||||
-rw-r--r-- | engines/drascula/drascula.h | 2 |
3 files changed, 11 insertions, 11 deletions
diff --git a/engines/drascula/animation.cpp b/engines/drascula/animation.cpp index 476376ab9b..1abe1257c2 100644 --- a/engines/drascula/animation.cpp +++ b/engines/drascula/animation.cpp @@ -1043,7 +1043,7 @@ void DrasculaEngine::animation_20_2() { sentido_vb = 1; vb_x = 120; - rompo_y_salgo = 1; + breakOut = 1; } } @@ -1103,7 +1103,7 @@ void DrasculaEngine::animation_23_2() { animation_27_2(); flags[25] = 1; - rompo_y_salgo = 1; + breakOut = 1; } void DrasculaEngine::animation_23_joined() { @@ -1233,7 +1233,7 @@ void DrasculaEngine::animation_29_2() { if (flags[38] == 0) { talk(403); - rompo_y_salgo = 1; + breakOut = 1; } else talk(386); } @@ -1277,7 +1277,7 @@ void DrasculaEngine::animation_31_2() { talk(410); talk_vb(56); - rompo_y_salgo = 1; + breakOut = 1; flags[38] = 0; flags[36] = 1; @@ -1531,7 +1531,7 @@ void DrasculaEngine::animation_2_5() { void DrasculaEngine::animation_3_5() { talk_bj(23); pickObject(10); - rompo_y_salgo = 1; + breakOut = 1; } void DrasculaEngine::animation_4_5() { @@ -2120,7 +2120,7 @@ void DrasculaEngine::animation_14_6() { talk_taber2(24); addObject(21); flags[10] = 1; - rompo_y_salgo = 1; + breakOut = 1; } void DrasculaEngine::animation_15_6() { diff --git a/engines/drascula/drascula.cpp b/engines/drascula/drascula.cpp index 49d64cfd63..9dc2e14084 100644 --- a/engines/drascula/drascula.cpp +++ b/engines/drascula/drascula.cpp @@ -133,7 +133,7 @@ int DrasculaEngine::go() { hasAnswer = 0; conta_blind_vez = 0; changeColor = 0; - rompo_y_salgo = 0; + breakOut = 0; vb_x = 120; sentido_vb = 1; vb_se_mueve = 0; frame_vb = 1; frame_piano = 0; frame_drunk = 0; @@ -3190,7 +3190,7 @@ void DrasculaEngine::converse(const char *nom_fich) { int used3 = 0; char buffer[256]; - rompo_y_salgo = 0; + breakOut = 0; strcpy(para_codificar, nom_fich); @@ -3351,7 +3351,7 @@ bucle_opc: } else if ((button_izq == 1) && (game4 == 2)) { delay(100); talk(phrase4, sound4); - rompo_y_salgo = 1; + breakOut = 1; } if (button_izq == 1) { @@ -3364,7 +3364,7 @@ bucle_opc: game3 = (used3 == 0) ? 1 : 3; game4 = 1; - if (rompo_y_salgo == 0) + if (breakOut == 0) goto bucle_opc; if (num_ejec == 2) diff --git a/engines/drascula/drascula.h b/engines/drascula/drascula.h index 55db43c348..54669a6ca4 100644 --- a/engines/drascula/drascula.h +++ b/engines/drascula/drascula.h @@ -261,7 +261,7 @@ public: int hasAnswer; int conta_blind_vez; int changeColor; - int rompo_y_salgo; + int breakOut; int vb_x, sentido_vb, vb_se_mueve, frame_vb; float newHeight, newWidth; int factor_red[202]; |