diff options
-rw-r--r-- | engines/lab/engine.cpp | 2 | ||||
-rw-r--r-- | engines/lab/intro.cpp | 2 | ||||
-rw-r--r-- | engines/lab/intro.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/engines/lab/engine.cpp b/engines/lab/engine.cpp index 62d4da9aa1..d51106523e 100644 --- a/engines/lab/engine.cpp +++ b/engines/lab/engine.cpp @@ -1090,7 +1090,7 @@ void LabEngine::go() { _event->mouseHide(); Intro *intro = new Intro(this); - intro->introSequence(); + intro->play(); delete intro; _event->mouseShow(); diff --git a/engines/lab/intro.cpp b/engines/lab/intro.cpp index b73de25b8b..7184d1093a 100644 --- a/engines/lab/intro.cpp +++ b/engines/lab/intro.cpp @@ -218,7 +218,7 @@ void Intro::nReadPict(const Common::String filename, bool playOnce) { _vm->_graphics->readPict(finalFileName, playOnce); } -void Intro::introSequence() { +void Intro::play() { uint16 palette[16] = { 0x0000, 0x0855, 0x0FF9, 0x0EE7, 0x0ED5, 0x0DB4, 0x0CA2, 0x0C91, diff --git a/engines/lab/intro.h b/engines/lab/intro.h index 0c2bc6d99c..991db2f3f4 100644 --- a/engines/lab/intro.h +++ b/engines/lab/intro.h @@ -40,7 +40,7 @@ public: /** * Does the introduction sequence for Labyrinth. */ - void introSequence(); + void play(); private: /** |