From 72af950573fb6252a009c9a703c3b0bb8c30552c Mon Sep 17 00:00:00 2001 From: Erik Hofman Date: Sun, 15 Mar 2020 14:57:24 +0100 Subject: [PATCH] Fix an error --- simgear/debug/logstream.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/debug/logstream.cxx b/simgear/debug/logstream.cxx index d99b0dc2..c06f5c5f 100644 --- a/simgear/debug/logstream.cxx +++ b/simgear/debug/logstream.cxx @@ -564,7 +564,7 @@ public: } if (in == SG_DEV_ALERT) { - return m_developerMode ? SG_POPUP : SG_WARN; + return m_developerMode ? SG_ALERT : SG_WARN; } return in;