diff options
| author | Filippos Karapetis | 2008-06-05 15:15:20 +0000 |
|---|---|---|
| committer | Filippos Karapetis | 2008-06-05 15:15:20 +0000 |
| commit | b9516aa80e21c4fd61cab13bba7b6170ffc1a523 (patch) | |
| tree | 12e6b6c8b0850a8fcafa5698c9c37a86466f1044 /engines | |
| parent | 5f573fea1150ef939c4ec8c71e3ae49f6f4930c3 (diff) | |
| download | scummvm-rg350-b9516aa80e21c4fd61cab13bba7b6170ffc1a523.tar.gz scummvm-rg350-b9516aa80e21c4fd61cab13bba7b6170ffc1a523.tar.bz2 scummvm-rg350-b9516aa80e21c4fd61cab13bba7b6170ffc1a523.zip | |
escoba -> runCurrentChapter
svn-id: r32557
Diffstat (limited to 'engines')
| -rw-r--r-- | engines/drascula/drascula.cpp | 4 | ||||
| -rw-r--r-- | engines/drascula/drascula.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/drascula/drascula.cpp b/engines/drascula/drascula.cpp index 0b22ba3170..f9ca3b4aa6 100644 --- a/engines/drascula/drascula.cpp +++ b/engines/drascula/drascula.cpp @@ -197,7 +197,7 @@ int DrasculaEngine::go() { strcpy(iconName[i + 1], _textverbs[_lang][i]); assignDefaultPalette(); - if (!escoba()) { + if (!runCurrentChapter()) { quitGame(); break; } @@ -399,7 +399,7 @@ void DrasculaEngine::updateScreen(int xorg, int yorg, int xdes, int ydes, int wi _system->updateScreen(); } -bool DrasculaEngine::escoba() { +bool DrasculaEngine::runCurrentChapter() { int n; if (_lang == kSpanish) diff --git a/engines/drascula/drascula.h b/engines/drascula/drascula.h index f8af3cb7d1..76b3c5c966 100644 --- a/engines/drascula/drascula.h +++ b/engines/drascula/drascula.h @@ -336,7 +336,7 @@ public: int leftMouseButton; int rightMouseButton; - bool escoba(); + bool runCurrentChapter(); void black(); void pickObject(int); void walkUp(); |
