Skip to content

Commit

Permalink
Fixed compilation error.
Browse files Browse the repository at this point in the history
  • Loading branch information
danij committed Mar 21, 2007
1 parent 8e25e73 commit 728b2bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doomsday/plugins/common/src/p_ceilings.c
Expand Up @@ -446,13 +446,13 @@ static int EV_DoCeiling2(int tag, float basespeed, ceiling_e type)
* Move a ceiling up/down.
*/
#if __JHEXEN__
int EV_DoCeiling(line_t *line, byte *arg, ceiling_e type)
int EV_DoCeiling(line_t *line, byte *args, ceiling_e type)
#else
int EV_DoCeiling(line_t *line, ceiling_e type)
#endif
{
#if __JHEXEN__
return EV_DoCeiling2(arg, (int) arg[0], (float) args[1] * (1.0 / 8),
return EV_DoCeiling2(args, (int) args[0], (float) args[1] * (1.0 / 8),
type);
#else
int rtn = 0;
Expand Down

0 comments on commit 728b2bd

Please sign in to comment.