diff mm7_4.cpp @ 2369:bddcaf5d5db2

removing non-nullptr conditions before frees, chaning 0 and NULL assignmnets to pointers to nullptr assignments
author Grumpy7
date Mon, 12 May 2014 01:50:32 +0200
parents 5d263539bbec
children b4a79e3ef2f0
line wrap: on
line diff
--- a/mm7_4.cpp	Mon May 12 00:13:39 2014 +0200
+++ b/mm7_4.cpp	Mon May 12 01:50:32 2014 +0200
@@ -2262,7 +2262,7 @@
           activeLevelDecoration = (LevelDecoration*)1;
           current_npc_text = 0;
           EventProcessor(npc_event_id, 0, 1);
-          activeLevelDecoration = NULL;
+          activeLevelDecoration = nullptr;
           break;
       }
     }