From 87d5545428647c2efddec4626bf7d18e25fae3b5 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 31 Dec 2020 16:35:07 +0100 Subject: [PATCH] option -dred to debug drawingtool quickly --- mapeditor.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mapeditor.cpp b/mapeditor.cpp index 2bcd4c55..533d606d 100644 --- a/mapeditor.cpp +++ b/mapeditor.cpp @@ -2897,6 +2897,11 @@ int read_editor_args() { #endif } #if CAP_POLY + else if(argis("-dred")) { + PHASEFROM(2); + mapeditor::dtcolor = 0xFF0000FF; + mapeditor::dtwidth = 0.1; + } else if(argis("-picload")) { PHASE(3); shift(); mapeditor::loadPicFile(args()); } #endif else return 1;