Skip to content

Commit

Permalink
LAB: Rename main intro function
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed Dec 24, 2015
1 parent 887add3 commit f4bc3c0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion engines/lab/engine.cpp
Expand Up @@ -1090,7 +1090,7 @@ void LabEngine::go() {
_event->mouseHide();

Intro *intro = new Intro(this);
intro->introSequence();
intro->play();
delete intro;

_event->mouseShow();
Expand Down
2 changes: 1 addition & 1 deletion engines/lab/intro.cpp
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion engines/lab/intro.h
Expand Up @@ -40,7 +40,7 @@ class Intro {
/**
* Does the introduction sequence for Labyrinth.
*/
void introSequence();
void play();

private:
/**
Expand Down

0 comments on commit f4bc3c0

Please sign in to comment.