diff options
author | Strangerke | 2015-12-24 01:47:53 +0100 |
---|---|---|
committer | Strangerke | 2015-12-24 01:47:53 +0100 |
commit | f4bc3c0ab424ea5c7a123ad21814a6c0fae10847 (patch) | |
tree | d0324be83941950166e45a0e5cdd724dc0eeb220 /engines/lab | |
parent | 887add323b641c5f95c873a176645a5783d764cd (diff) | |
download | scummvm-rg350-f4bc3c0ab424ea5c7a123ad21814a6c0fae10847.tar.gz scummvm-rg350-f4bc3c0ab424ea5c7a123ad21814a6c0fae10847.tar.bz2 scummvm-rg350-f4bc3c0ab424ea5c7a123ad21814a6c0fae10847.zip |
LAB: Rename main intro function
Diffstat (limited to 'engines/lab')
-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: /** |