Couple of missing 'static's.

[originally from svn r8801]
This commit is contained in:
Simon Tatham
2010-01-01 19:41:59 +00:00
parent c91471e6c1
commit 79bb9c00b3
2 changed files with 4 additions and 4 deletions

4
keen.c
View File

@ -1748,8 +1748,8 @@ static void game_free_drawstate(drawing *dr, game_drawstate *ds)
sfree(ds); sfree(ds);
} }
void draw_tile(drawing *dr, game_drawstate *ds, struct clues *clues, static void draw_tile(drawing *dr, game_drawstate *ds, struct clues *clues,
int x, int y, long tile) int x, int y, long tile)
{ {
int w = clues->w /* , a = w*w */; int w = clues->w /* , a = w*w */;
int tx, ty, tw, th; int tx, ty, tw, th;

View File

@ -1316,8 +1316,8 @@ static void game_free_drawstate(drawing *dr, game_drawstate *ds)
sfree(ds); sfree(ds);
} }
void draw_tile(drawing *dr, game_drawstate *ds, int x, int y, long tile, static void draw_tile(drawing *dr, game_drawstate *ds, int x, int y, long tile,
long pencil, long error) long pencil, long error)
{ {
int w = ds->w /* , a = w*w */; int w = ds->w /* , a = w*w */;
int tx, ty, tw, th; int tx, ty, tw, th;