aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/exec.cpp
diff options
context:
space:
mode:
authorNicola Mettifogo2009-02-26 10:44:01 +0000
committerNicola Mettifogo2009-02-26 10:44:01 +0000
commit88efc8603ec15e726b9a0c3663588f7afe57e0d2 (patch)
tree879dd576fe5fbf1120a05e4ad5c25517e21894f6 /engines/parallaction/exec.cpp
parent2fbf626d095303ea00799e6ca972c124673897b1 (diff)
downloadscummvm-rg350-88efc8603ec15e726b9a0c3663588f7afe57e0d2.tar.gz
scummvm-rg350-88efc8603ec15e726b9a0c3663588f7afe57e0d2.tar.bz2
scummvm-rg350-88efc8603ec15e726b9a0c3663588f7afe57e0d2.zip
Removed null*Ptr dummy objects, using SharedPtr's reset method to null pointers instead.
svn-id: r38897
Diffstat (limited to 'engines/parallaction/exec.cpp')
-rw-r--r--engines/parallaction/exec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/exec.cpp b/engines/parallaction/exec.cpp
index 0b09c55a8f..7a4208e3c3 100644
--- a/engines/parallaction/exec.cpp
+++ b/engines/parallaction/exec.cpp
@@ -164,7 +164,7 @@ void CommandExec::cleanSuspendedList() {
_suspendedCtxt._valid = false;
_suspendedCtxt._first = _suspendedCtxt._last;
- _suspendedCtxt._zone = nullZonePtr;
+ _suspendedCtxt._zone.reset();
}
void CommandExec::suspend() {