aboutsummaryrefslogtreecommitdiff
path: root/engines/voyeur/data.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/voyeur/data.cpp')
-rw-r--r--engines/voyeur/data.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/engines/voyeur/data.cpp b/engines/voyeur/data.cpp
index 9104d5f560..be22a58f28 100644
--- a/engines/voyeur/data.cpp
+++ b/engines/voyeur/data.cpp
@@ -170,15 +170,14 @@ void SVoy::addEvidEventStart(int v) {
e._minute = _vm->_gameMinute;
e._isAM = _isAM;
e._type = EVTYPE_EVID;
- e._videoId = _vm->_videoId;
- e._computerOn = _vocSecondsOffset;
- e._dead = _vm->_eventsManager._videoDead;
-
+ e._videoId = _vm->_playStampGroupId;
+ e._computerOn = _field47A;
+ e._computerOff = v;
}
-void SVoy::addEvidEventEnd(int dead) {
+void SVoy::addEvidEventEnd(int totalPages) {
VoyeurEvent &e = _events[_eventCount];
- e._dead = dead;
+ e._dead = totalPages;
if (_eventCount < (TOTAL_EVENTS - 1))
++_eventCount;
}