[Scummvm-cvs-logs] scummvm master -> 27a45d169e1b3196496abbd396894eb03fd6c280
Strangerke
Strangerke at scummvm.org
Mon Mar 17 21:21:30 CET 2014
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
27a45d169e VOYEUR: Use a nullptr instead of a 0 in a return value
Commit: 27a45d169e1b3196496abbd396894eb03fd6c280
https://github.com/scummvm/scummvm/commit/27a45d169e1b3196496abbd396894eb03fd6c280
Author: Strangerke (strangerke at scummvm.org)
Date: 2014-03-17T21:19:28+01:00
Commit Message:
VOYEUR: Use a nullptr instead of a 0 in a return value
Changed paths:
engines/voyeur/animation.cpp
diff --git a/engines/voyeur/animation.cpp b/engines/voyeur/animation.cpp
index 20af780..c1ded75 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() {
More information about the Scummvm-git-logs
mailing list