diff options
author | marynate <mary.w.nate@gmail.com> | 2015-03-09 16:28:08 +0800 |
---|---|---|
committer | marynate <mary.w.nate@gmail.com> | 2015-03-09 16:28:08 +0800 |
commit | 7957709cb162a646ad5c81f81cce62f0f61b5e1c (patch) | |
tree | 41cf8486ac0dd1fc8fee65d2d5395b30e6161f08 /scene/2d/tile_map.h | |
parent | 09489e3a78de39bb4d8690f3c65f8a5e7a56a95e (diff) |
Fix compie error in TileMap::_fix_cell_transform(...)
Diffstat (limited to 'scene/2d/tile_map.h')
-rw-r--r-- | scene/2d/tile_map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/2d/tile_map.h b/scene/2d/tile_map.h index 3facc9e8b7..e02c4ee5bb 100644 --- a/scene/2d/tile_map.h +++ b/scene/2d/tile_map.h @@ -148,7 +148,7 @@ private: uint32_t collision_layer; TileOrigin tile_origin; - void _fix_cell_transform(Matrix32& xform, const Cell& c, Vector2 &offset, const Size2 &s); + void _fix_cell_transform(Matrix32& xform, const Cell& p_cell, const Vector2 &p_offset, const Size2 &p_sc); Map<PosKey,Quadrant>::Element *_create_quadrant(const PosKey& p_qk); void _erase_quadrant(Map<PosKey,Quadrant>::Element *Q); |