diff options
Diffstat (limited to 'src/game')
| -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); }; |