aboutsummaryrefslogtreecommitdiff
path: root/engines/prince/archive.cpp
diff options
context:
space:
mode:
authorlukaslw2014-10-08 18:09:18 +0200
committerlukaslw2014-10-08 18:09:18 +0200
commita554fa9f7d35679c36cb9149a080d9f8a1e5cbe4 (patch)
tree2c84d55778f54e80789f97b1d76ad32e2d515421 /engines/prince/archive.cpp
parent78684333478cd567c820b930d0ba6663a0cecdd0 (diff)
downloadscummvm-rg350-a554fa9f7d35679c36cb9149a080d9f8a1e5cbe4.tar.gz
scummvm-rg350-a554fa9f7d35679c36cb9149a080d9f8a1e5cbe4.tar.bz2
scummvm-rg350-a554fa9f7d35679c36cb9149a080d9f8a1e5cbe4.zip
PRINCE: Changing all occurrences of NULL to nullptr
To beconsistent and to keep just one of them
Diffstat (limited to 'engines/prince/archive.cpp')
-rw-r--r--engines/prince/archive.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/prince/archive.cpp b/engines/prince/archive.cpp
index 28f77cb4c4..bc5d5d3818 100644
--- a/engines/prince/archive.cpp
+++ b/engines/prince/archive.cpp
@@ -29,7 +29,7 @@
namespace Prince {
-PtcArchive::PtcArchive() : _stream(NULL) {
+PtcArchive::PtcArchive() : _stream(nullptr) {
}
PtcArchive::~PtcArchive() {
@@ -81,7 +81,7 @@ bool PtcArchive::open(const Common::String &filename) {
void PtcArchive::close() {
delete _stream;
- _stream = NULL;
+ _stream = nullptr;
_items.clear();
}