blob: f697975209753555b01f67910e5cc58736af1fab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- a/main.c
+++ b/main.c
@@ -206,7 +206,6 @@
struct bangdots bdot[MAX_BANG_DOTS], *bdotptr=bdot;
struct spacedot sdot[MAX_SPACE_DOTS];
-struct greeble greeb[MAX_GREEBLES];
struct greeble {
int active;
float x,y; // When landed, these represent an offset from the host rock
@@ -214,6 +213,7 @@
int landed;
int boredom; // Goes up while landed
};
+struct greeble greeb[MAX_GREEBLES];
// }}}
void init_greeblies() {
|