From ced6d20295a8263757d57c02a07ffcb66688a163 Mon Sep 17 00:00:00 2001 From: Craig Robbins Date: Fri, 6 Mar 2015 20:21:51 +1000 Subject: For usages of assert() that are meant to persist in Release builds (when NDEBUG is defined), replace those usages with persistent alternatives --- src/mg_schematic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mg_schematic.cpp') diff --git a/src/mg_schematic.cpp b/src/mg_schematic.cpp index a3404e2dc..a05e372e5 100644 --- a/src/mg_schematic.cpp +++ b/src/mg_schematic.cpp @@ -159,7 +159,7 @@ void Schematic::blitToVManip(v3s16 p, MMVManip *vm, Rotation rot, void Schematic::placeStructure(Map *map, v3s16 p, u32 flags, Rotation rot, bool force_placement, INodeDefManager *ndef) { - assert(schemdata != NULL); + assert(schemdata != NULL); // Pre-condition MMVManip *vm = new MMVManip(map); if (rot == ROTATE_RAND) -- cgit v1.2.3