diff options
author | Strangerke | 2014-03-17 21:19:28 +0100 |
---|---|---|
committer | Strangerke | 2014-03-17 21:19:28 +0100 |
commit | 27a45d169e1b3196496abbd396894eb03fd6c280 (patch) | |
tree | b4e72154eacbf29fce57f5914d1934ee1a94077f /engines | |
parent | 548dd029ee5c7da40d53c6f2a9979940745e2dc7 (diff) | |
download | scummvm-rg350-27a45d169e1b3196496abbd396894eb03fd6c280.tar.gz scummvm-rg350-27a45d169e1b3196496abbd396894eb03fd6c280.tar.bz2 scummvm-rg350-27a45d169e1b3196496abbd396894eb03fd6c280.zip |
VOYEUR: Use a nullptr instead of a 0 in a return value
Diffstat (limited to 'engines')
-rw-r--r-- | engines/voyeur/animation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/voyeur/animation.cpp b/engines/voyeur/animation.cpp index 20af780755..c1ded75f02 100644 --- a/engines/voyeur/animation.cpp +++ b/engines/voyeur/animation.cpp @@ -100,7 +100,7 @@ const Common::List<Common::Rect> *RL2Decoder::getDirtyRects() const { if (_videoTrack) return _videoTrack->getDirtyRects(); - return 0; + return nullptr; } void RL2Decoder::clearDirtyRects() { |