diff options
author | tron <tron@openttd.org> | 2005-12-30 14:28:32 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-12-30 14:28:32 +0000 |
commit | 608e9a72030de7b21a6ee218e64f0c62703cd493 (patch) | |
tree | 9d5225f54fd866773247466480bdf2e436a1c49a | |
parent | 2a94a647117dc14df22ff1fbfa367f890ad1aade (diff) | |
download | openttd-608e9a72030de7b21a6ee218e64f0c62703cd493.tar.xz |
(svn r3357) Fix an off-by-one error in checking if a coordinate passed to a command is on the map
-rw-r--r-- | command.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -332,7 +332,7 @@ int32 DoCommand(int x, int y, uint32 p1, uint32 p2, uint32 flags, uint procc) CommandProc *proc; /* Do not even think about executing out-of-bounds tile-commands */ - if (TileVirtXY(x, y) > MapSize()) { + if (TileVirtXY(x, y) >= MapSize()) { _cmd_text = NULL; return CMD_ERROR; } |