diff options
| author | Filippos Karapetis | 2015-12-26 12:39:18 +0200 |
|---|---|---|
| committer | Filippos Karapetis | 2015-12-26 12:39:18 +0200 |
| commit | d3369808f5c66faf19efbb14c2bada5d24df0c4e (patch) | |
| tree | 8c559043122e31d3bbdd03a4565e61cf2ec236bb | |
| parent | c495a4ead46c7378c1d955611dbb0e831c93e5fd (diff) | |
| download | scummvm-rg350-d3369808f5c66faf19efbb14c2bada5d24df0c4e.tar.gz scummvm-rg350-d3369808f5c66faf19efbb14c2bada5d24df0c4e.tar.bz2 scummvm-rg350-d3369808f5c66faf19efbb14c2bada5d24df0c4e.zip | |
LAB: Document where some scene transitions are used
| -rw-r--r-- | engines/lab/dispman.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/lab/dispman.cpp b/engines/lab/dispman.cpp index 8ff6a61675..f41975b1b6 100644 --- a/engines/lab/dispman.cpp +++ b/engines/lab/dispman.cpp @@ -832,19 +832,19 @@ void DisplayMan::doTransition(TransitionType transitionType, CloseDataPtr *close case kTransitionTransporter: doTransWipe(closePtrList, filename); break; - case kTransitionScrollWipe: + case kTransitionScrollWipe: // only used in scene 7 (street, when teleporting to the surreal maze) doScrollWipe(filename); break; - case kTransitionScrollBlack: + case kTransitionScrollBlack: // only used in scene 7 (street, when teleporting to the surreal maze) doScrollBlack(); break; - case kTransitionScrollBounce: + case kTransitionScrollBounce: // only used in scene 7 (street, when teleporting to the surreal maze) doScrollBounce(); break; - case kTransitionReadFirstFrame: + case kTransitionReadFirstFrame: // only used in scene 7 (street, when teleporting to the surreal maze) readPict(filename, false); break; - case kTransitionReadNextFrame: + case kTransitionReadNextFrame: // only used in scene 7 (street, when teleporting to the surreal maze) _vm->_anim->diffNextFrame(); break; case kTransitionNone: |
