about summary refs log tree commit diff
path: root/src/game/game.cpp
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2007-12-12 19:52:57 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2007-12-12 19:52:57 +0000
commitf7ea0b2ba8851e4c0ceaef0a8b2361adfc218443 (patch)
tree123f26bfb4ad7c053dd0ed660eea0c793762c837 /src/game/game.cpp
parent182c77721e60c6a3b68cc3f1f83e485374d85096 (diff)
downloadzcatch-f7ea0b2ba8851e4c0ceaef0a8b2361adfc218443.tar.gz
zcatch-f7ea0b2ba8851e4c0ceaef0a8b2361adfc218443.zip
loads of minor stuff
Diffstat (limited to 'src/game/game.cpp')
-rw-r--r--src/game/game.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/game.cpp b/src/game/game.cpp
index 2632b64b..cb00ae0e 100644
--- a/src/game/game.cpp
+++ b/src/game/game.cpp
@@ -40,7 +40,7 @@ void move_point(vec2 *inout_pos, vec2 *inout_vel, float elasticity, int *bounces
 	}
 }
 
-static bool test_box(vec2 pos, vec2 size)
+bool test_box(vec2 pos, vec2 size)
 {
 	size *= 0.5f;
 	if(col_check_point(pos.x-size.x, pos.y-size.y))