diff options
author | Paul Gilbert | 2014-02-02 19:17:15 -0500 |
---|---|---|
committer | Paul Gilbert | 2014-02-02 19:17:15 -0500 |
commit | ff68d8f89a8d992e51f52549673d4943e0fb998e (patch) | |
tree | 2eb2b24380933e2aa7f4bd33ec01424aa2a46588 /engines | |
parent | 569fa63a3a00cdba1d2e3c87941f300e4bfb1a4d (diff) | |
download | scummvm-rg350-ff68d8f89a8d992e51f52549673d4943e0fb998e.tar.gz scummvm-rg350-ff68d8f89a8d992e51f52549673d4943e0fb998e.tar.bz2 scummvm-rg350-ff68d8f89a8d992e51f52549673d4943e0fb998e.zip |
VOYEUR: Added some comments
Diffstat (limited to 'engines')
-rw-r--r-- | engines/voyeur/voyeur_game.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/voyeur/voyeur_game.cpp b/engines/voyeur/voyeur_game.cpp index 473224bf7a..634e79c31c 100644 --- a/engines/voyeur/voyeur_game.cpp +++ b/engines/voyeur/voyeur_game.cpp @@ -127,27 +127,31 @@ void VoyeurEngine::playStamp() { break; case 17: + // Called the police, showing the tape doTapePlaying(); if (!checkForMurder() && _voy._transitionId <= 15) checkForIncriminate(); if (_voy._videoEventId != -1) { + // Show the found video that is of interest to the police playAVideoEvent(_voy._videoEventId); _voy._eventFlags &= ~EVTFLAG_RECORDING; } + // Handle response _mainThread->chooseSTAMPButton(0); flag = true; break; case 130: { - //_tmflag = 1; + // user selected to send the tape if (_bVoy->getBoltGroup(_playStampGroupId)) { _graphicsManager._backgroundPage = _bVoy->boltEntry(_playStampGroupId)._picResource; _graphicsManager._backColors = _bVoy->boltEntry(_playStampGroupId + 1)._cMapResource; buttonId = getChooseButton(); if (_eventsManager._rightClick) + // Aborted out of selecting a recipient buttonId = 4; _bVoy->freeBoltGroup(_playStampGroupId); |