blob: eb46b60fde7ece84186d453f59b790b7ce9d4501 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- maze.c.orig
+++ maze.c
@@ -124,7 +124,7 @@
"z---x---x---x---x---c" } };
-read_maze(num)
+void read_maze(num)
int num;
{
int i, xx, yy;
@@ -259,7 +259,7 @@
* The function which follows is used at the beginning of each level to
* set up the initial parameters for all of the moving figures.
*/
-position_players()
+void position_players()
{
int i;
XRectangle ghost_rect[MAX_GHOSTS], pac_rect;
|