From 556c2349979f64b43c4df251482b7b1886d057e7 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 22 May 2019 00:04:29 +0200 Subject: [PATCH] added debugflag DF_LOG --- hyper.h | 3 ++- init.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/hyper.h b/hyper.h index e7b7404c..dfc912ba 100644 --- a/hyper.h +++ b/hyper.h @@ -3680,7 +3680,8 @@ void set_column(transmatrix& T, int i, const hyperpoint& H); #define DF_TIME 1024 // a flag to display timestamps #define DF_GP 2048 #define DF_POLY 4096 -#define DF_KEYS "imwesxufgbtop" +#define DF_LOG 8192 +#define DF_KEYS "imwesxufgbtopl" #if ISANDROID #define DEBB(r,x) diff --git a/init.cpp b/init.cpp index e65d4dc6..016fd73b 100644 --- a/init.cpp +++ b/init.cpp @@ -8,7 +8,7 @@ namespace hr { #if CU_INIT int fontscale = 100; -int debugflags = DF_INIT | DF_ERROR | DF_WARN | DF_MSG | DF_TIME; +int debugflags = DF_INIT | DF_ERROR | DF_WARN | DF_MSG | DF_TIME | DF_LOG; string s0;