aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/res_struct.cpp
diff options
context:
space:
mode:
authorMax Horn2007-02-09 17:17:08 +0000
committerMax Horn2007-02-09 17:17:08 +0000
commita49c22290f3119033a7966d28856aed1f204dd41 (patch)
tree35f1137784840635660a981036300d2a7195a237 /engines/lure/res_struct.cpp
parent2d84b43dfc54446d0d4247765b5d6e3657bea88a (diff)
downloadscummvm-rg350-a49c22290f3119033a7966d28856aed1f204dd41.tar.gz
scummvm-rg350-a49c22290f3119033a7966d28856aed1f204dd41.tar.bz2
scummvm-rg350-a49c22290f3119033a7966d28856aed1f204dd41.zip
fix warning
svn-id: r25450
Diffstat (limited to 'engines/lure/res_struct.cpp')
-rw-r--r--engines/lure/res_struct.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lure/res_struct.cpp b/engines/lure/res_struct.cpp
index d1178ae5ca..39d110f997 100644
--- a/engines/lure/res_struct.cpp
+++ b/engines/lure/res_struct.cpp
@@ -708,7 +708,7 @@ CharacterScheduleEntry *CharacterScheduleEntry::next() {
}
uint16 CharacterScheduleEntry::id() {
- return (_parent == NULL) ? NULL : _parent->getId(this);
+ return (_parent == NULL) ? 0 : _parent->getId(this);
}
CharacterScheduleSet::CharacterScheduleSet(CharacterScheduleResource *rec, uint16 setId) {