about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorCarmine <caarmine@gmail.com>2011-02-12 01:30:47 -0800
committeroy <Tom_Adams@web.de>2011-02-12 19:30:56 +0100
commite45ad2a085d8f02aadc5d823a1d7dda4e1da70aa (patch)
tree56fb08cba0a7f6a3639edeb69bd75a03572f3873 /src
parentd12db45c488bb72558b2baa049abae7abfd9b7f3 (diff)
downloadzcatch-e45ad2a085d8f02aadc5d823a1d7dda4e1da70aa.tar.gz
zcatch-e45ad2a085d8f02aadc5d823a1d7dda4e1da70aa.zip
only a simple wrong name
Diffstat (limited to 'src')
-rw-r--r--src/game/collision.h2
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);
 };