mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-25 13:31:37 +00:00
- fix typo
This commit is contained in:
parent
28ea567c22
commit
0d2bdfca99
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue