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 22, 2007
1 parent 5e2e2ec commit e96c447
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doomsday/plugins/doom64tc/include/p_spec.h
Expand Up @@ -420,7 +420,7 @@ typedef enum {
} result_e;

result_e T_MovePlane(sector_t *sector, float speed, float dest,
boolean crush, int floorOrCeiling, int direction);
int crush, int floorOrCeiling, int direction);

int EV_BuildStairs(line_t *line, stair_e type);
int EV_DoFloor(line_t *line, floor_e floortype);
Expand Down
2 changes: 1 addition & 1 deletion doomsday/plugins/jdoom/include/p_spec.h
Expand Up @@ -384,7 +384,7 @@ typedef enum {
} result_e;

result_e T_MovePlane(sector_t *sector, float speed, float dest,
boolean crush, int floorOrCeiling, int direction);
int crush, int floorOrCeiling, int direction);

int EV_BuildStairs(line_t *line, stair_e type);
int EV_DoFloor(line_t *line, floor_e floortype);
Expand Down
2 changes: 1 addition & 1 deletion doomsday/plugins/jheretic/include/p_spec.h
Expand Up @@ -367,7 +367,7 @@ typedef enum {
} result_e;

result_e T_MovePlane(sector_t *sector, float speed, float dest,
boolean crush, int floorOrCeiling, int direction);
int crush, int floorOrCeiling, int direction);

int EV_BuildStairs(line_t *line, stair_e type);
int EV_DoFloor(line_t *line, floor_e floortype);
Expand Down
2 changes: 1 addition & 1 deletion doomsday/plugins/wolftc/include/p_spec.h
Expand Up @@ -384,7 +384,7 @@ typedef enum {
} result_e;

result_e T_MovePlane(sector_t *sector, float speed, float dest,
boolean crush, int floorOrCeiling, int direction);
int crush, int floorOrCeiling, int direction);

int EV_BuildStairs(line_t *line, stair_e type);
int EV_DoFloor(line_t *line, floor_e floortype);
Expand Down

0 comments on commit e96c447

Please sign in to comment.