aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/timeline.cpp
diff options
context:
space:
mode:
authorStrangerke2016-09-19 21:45:14 +0200
committerStrangerke2016-09-19 21:52:37 +0200
commit706b1b27a4bba85cff87daddf7901e9428d6177c (patch)
tree3ae56e140a935b3227c72ed949984793bce29c01 /engines/dm/timeline.cpp
parenta60558071d0c6ffec9d099571fd1daff9e735532 (diff)
downloadscummvm-rg350-706b1b27a4bba85cff87daddf7901e9428d6177c.tar.gz
scummvm-rg350-706b1b27a4bba85cff87daddf7901e9428d6177c.tar.bz2
scummvm-rg350-706b1b27a4bba85cff87daddf7901e9428d6177c.zip
DM: Fix 2 GCC warnings, some renaming
Diffstat (limited to 'engines/dm/timeline.cpp')
-rw-r--r--engines/dm/timeline.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dm/timeline.cpp b/engines/dm/timeline.cpp
index 24b0b290ed..330bb4c46f 100644
--- a/engines/dm/timeline.cpp
+++ b/engines/dm/timeline.cpp
@@ -110,7 +110,7 @@ Timeline::~Timeline() {
void Timeline::initTimeline() {
_events = new TimelineEvent[_eventMaxCount];
_timeline = new uint16[_eventMaxCount];
- if (_vm->_gameMode != k0_modeLoadSavedGame) {
+ if (_vm->_gameMode != kDMModeLoadSavedGame) {
for (int16 i = 0; i < _eventMaxCount; ++i)
_events[i]._type = k0_TMEventTypeNone;
_eventCount = 0;