From f009e806899131179c001ae1a336d3a3ba6be22e Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 28 Aug 2018 13:47:51 +0200 Subject: [PATCH] crash fixed again --- hyper.h | 1 - mapeditor.cpp | 6 ++---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/hyper.h b/hyper.h index 9ed592b3..3dd1ddc5 100644 --- a/hyper.h +++ b/hyper.h @@ -864,7 +864,6 @@ transmatrix calc_relative_matrix(cell *c, cell *c1, const hyperpoint& point_hint transmatrix calc_relative_matrix(cell *c, cell *c1, int direction_hint); static const int NOHINT = -1; - // graph void showMissionScreen(); diff --git a/mapeditor.cpp b/mapeditor.cpp index 52d9d64b..1e16154c 100644 --- a/mapeditor.cpp +++ b/mapeditor.cpp @@ -1706,7 +1706,7 @@ namespace mapeditor { return false; #else - if(c == drawcell && editingShape(group, id) && prio == PPR_DEFAULT) + if(c && c == drawcell && editingShape(group, id) && prio == PPR_DEFAULT) drawtrans = V; usershape *us = usershapes[group][id]; @@ -1724,7 +1724,7 @@ namespace mapeditor { if(cmode & sm::DRAW) { #if CAP_TEXTURE - if(texture::config.tstate == texture::tsActive && lmouseover && !mouseout() && (lstartcell || !holdmouse)) { + if(texture::config.tstate == texture::tsActive && lmouseover && !mouseout() && (lstartcell || !holdmouse) && c) { cell *ls = lstartcell ? lstartcell : lmouseover; auto sio = patterns::getpatterninfo0(ls); auto sih = patterns::getpatterninfo0(c); @@ -1768,8 +1768,6 @@ namespace mapeditor { 0xFFFF00); } */ - if(c == ew.c) mapeditor::drawtrans = V; - if(!us) return false; usershapelayer &ds(us->d[mapeditor::dslayer]);