mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 08:01:30 -07:00
Couple of missing 'static's.
[originally from svn r8801]
This commit is contained in:
4
keen.c
4
keen.c
@ -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;
|
||||||
|
@ -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;
|
||||||
|
Reference in New Issue
Block a user