Skip to content

Commit

Permalink
Fixed FTBFS issue reported by Yagisan and Dave. Also removed an unref…
Browse files Browse the repository at this point in the history
…erenced local in LG_Init()
  • Loading branch information
danij committed Apr 22, 2007
1 parent 3a4fd97 commit 9076def
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/r_lgrid.c
Expand Up @@ -173,7 +173,7 @@ void LG_Init(void)
gridblock_t *block;
int *sampleResults = 0;
int n, size, numSamples, center, best;
uint l, s;
uint s;
fixed_t off[2];
lgsamplepoint_t *samplePoints = 0, sample;

Expand Down
2 changes: 1 addition & 1 deletion doomsday/plugins/common/src/am_map.c
Expand Up @@ -456,7 +456,7 @@ static float subColors[10][4]; // ten sets of RGBA

// CODE --------------------------------------------------------------------

static _inline automap_t *mapForPlayerId(int id)
static automap_t __inline *mapForPlayerId(int id)
{
if(id < 0 || id >= MAXPLAYERS)
{
Expand Down

0 comments on commit 9076def

Please sign in to comment.