diff options
| author | Carmine <caarmine@gmail.com> | 2011-02-12 01:30:47 -0800 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-02-12 19:30:56 +0100 |
| commit | e45ad2a085d8f02aadc5d823a1d7dda4e1da70aa (patch) | |
| tree | 56fb08cba0a7f6a3639edeb69bd75a03572f3873 | |
| parent | d12db45c488bb72558b2baa049abae7abfd9b7f3 (diff) | |
| download | zcatch-e45ad2a085d8f02aadc5d823a1d7dda4e1da70aa.tar.gz zcatch-e45ad2a085d8f02aadc5d823a1d7dda4e1da70aa.zip | |
only a simple wrong name
| -rw-r--r-- | src/game/collision.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/collision.h b/src/game/collision.h index def7cd47..8bcbe789 100644 --- a/src/game/collision.h +++ b/src/game/collision.h @@ -31,7 +31,7 @@ public: int GetWidth() { return m_Width; }; int GetHeight() { return m_Height; }; int IntersectLine(vec2 Pos0, vec2 Pos1, vec2 *pOutCollision, vec2 *pOutBeforeCollision); - void MovePoint(vec2 *pInoutPos, vec2 *pInoutVel, float Elasticity, int *Bpounces); + void MovePoint(vec2 *pInoutPos, vec2 *pInoutVel, float Elasticity, int *pBounces); void MoveBox(vec2 *pInoutPos, vec2 *pInoutVel, vec2 Size, float Elasticity); bool TestBox(vec2 Pos, vec2 Size); }; |