diff options
author | Max Horn | 2007-02-09 17:17:08 +0000 |
---|---|---|
committer | Max Horn | 2007-02-09 17:17:08 +0000 |
commit | a49c22290f3119033a7966d28856aed1f204dd41 (patch) | |
tree | 35f1137784840635660a981036300d2a7195a237 /engines/lure | |
parent | 2d84b43dfc54446d0d4247765b5d6e3657bea88a (diff) | |
download | scummvm-rg350-a49c22290f3119033a7966d28856aed1f204dd41.tar.gz scummvm-rg350-a49c22290f3119033a7966d28856aed1f204dd41.tar.bz2 scummvm-rg350-a49c22290f3119033a7966d28856aed1f204dd41.zip |
fix warning
svn-id: r25450
Diffstat (limited to 'engines/lure')
-rw-r--r-- | engines/lure/res_struct.cpp | 2 |
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) { |