aboutsummaryrefslogtreecommitdiff
path: root/engines/voyeur
diff options
context:
space:
mode:
authorStrangerke2014-03-17 21:19:28 +0100
committerStrangerke2014-03-17 21:19:28 +0100
commit27a45d169e1b3196496abbd396894eb03fd6c280 (patch)
treeb4e72154eacbf29fce57f5914d1934ee1a94077f /engines/voyeur
parent548dd029ee5c7da40d53c6f2a9979940745e2dc7 (diff)
downloadscummvm-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/voyeur')
-rw-r--r--engines/voyeur/animation.cpp2
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() {