aboutsummaryrefslogtreecommitdiff
path: root/engines/voyeur/events.h
diff options
context:
space:
mode:
authorPaul Gilbert2013-12-20 23:03:17 -0500
committerPaul Gilbert2013-12-20 23:03:17 -0500
commit537ec24e1ee3d7c9e4dd082d2ebec5e6880a869f (patch)
treee8a12438f116eb73d7413492b7a55591f9d0978f /engines/voyeur/events.h
parent171d1594899e7064f2ebbbafd0f7b7858aaa2444 (diff)
downloadscummvm-rg350-537ec24e1ee3d7c9e4dd082d2ebec5e6880a869f.tar.gz
scummvm-rg350-537ec24e1ee3d7c9e4dd082d2ebec5e6880a869f.tar.bz2
scummvm-rg350-537ec24e1ee3d7c9e4dd082d2ebec5e6880a869f.zip
VOYEUR: Renamed a couple of event fields
Diffstat (limited to 'engines/voyeur/events.h')
-rw-r--r--engines/voyeur/events.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/engines/voyeur/events.h b/engines/voyeur/events.h
index 494b90d6de..c8377487dc 100644
--- a/engines/voyeur/events.h
+++ b/engines/voyeur/events.h
@@ -52,13 +52,16 @@ public:
class VoyeurEvent {
public:
- int _computerNum;
- int _computerBut[4];
+ int _hour;
+ int _minute;
+ bool _isAM;
+ int _field6;
+ int _field8;
int _computerOn;
int _computerOff;
int _dead;
public:
- VoyeurEvent(int v1, int v2, int v3, int v4, int v5, int v6, int v7);
+ VoyeurEvent(int hour, int minute, bool isAM, int v4, int v5, int v6, int v7);
};
class SVoy {
@@ -95,6 +98,9 @@ public:
int _field4EE;
int _field4F0;
int _field4F2;
+ int _eventCount;
+ Common::Array<VoyeurEvent> _events;
+
int _timeStart;
int _duration;
@@ -113,7 +119,6 @@ public:
int _numPhonesUsed;
int _evidence[20];
- Common::Array<VoyeurEvent> _events;
int _field4376;
int _field4378;
int _field437A;