From 35d0bcb1d56ffee99cef797672f1327498ee5b14 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Wed, 14 Aug 2019 02:44:40 -0400 Subject: [PATCH] - fix typo --- src/p_udmf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_udmf.cpp b/src/p_udmf.cpp index 0d17b451b..46ae62fa5 100644 --- a/src/p_udmf.cpp +++ b/src/p_udmf.cpp @@ -264,7 +264,7 @@ double UDMFParserBase::CheckCoordinate(const char *key) } if (sc.Float < -32768 || sc.Float > 32768) { - sc.ScriptMessage("Value %f out of range for a coordinate '%s'. Valid range is ]-32768 .. 32768]", sc.Float, key); + sc.ScriptMessage("Value %f out of range for a coordinate '%s'. Valid range is [-32768 .. 32768]", sc.Float, key); BadCoordinates = true; // If this happens the map must not allowed to be started. } return sc.Float;