- fix typo

This commit is contained in:
Rachael Alexanderson 2019-08-14 02:44:40 -04:00
parent 28ea567c22
commit 0d2bdfca99

View file

@ -252,7 +252,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;