VOYEUR: Use a nullptr instead of a 0 in a return value

This commit is contained in:
Strangerke 2014-03-17 21:19:28 +01:00
parent 548dd029ee
commit 27a45d169e

View File

@ -100,7 +100,7 @@ const Common::List<Common::Rect> *RL2Decoder::getDirtyRects() const {
if (_videoTrack)
return _videoTrack->getDirtyRects();
return 0;
return nullptr;
}
void RL2Decoder::clearDirtyRects() {