mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-02-18 02:01:18 +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)
|
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.
|
BadCoordinates = true; // If this happens the map must not allowed to be started.
|
||||||
}
|
}
|
||||||
return sc.Float;
|
return sc.Float;
|
||||||
|
|
Loading…
Reference in a new issue