- fix typo

This commit is contained in:
Rachael Alexanderson 2019-08-14 02:44:40 -04:00 committed by drfrag
parent 12dee6ca91
commit 35d0bcb1d5

View file

@ -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;