mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-20 18:42:17 +00:00
- fix typo
This commit is contained in:
parent
12dee6ca91
commit
35d0bcb1d5
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue