(svn r26486) -Codechange: replace a number of snprintfs with seprintf
This commit is contained in:
@@ -211,7 +211,7 @@ public:
|
||||
|
||||
/* Location */
|
||||
char tmp[16];
|
||||
snprintf(tmp, lengthof(tmp), "0x%.4X", tile);
|
||||
seprintf(tmp, lastof(tmp), "0x%.4X", tile);
|
||||
SetDParam(0, TileX(tile));
|
||||
SetDParam(1, TileY(tile));
|
||||
SetDParam(2, GetTileZ(tile));
|
||||
|
Reference in New Issue
Block a user