XRogue: convert to ANSI-style function declarations.
This commit is contained in:
parent
e8e6e604c3
commit
2853120387
41 changed files with 1281 additions and 908 deletions
|
|
@ -15,7 +15,8 @@
|
|||
#include <curses.h>
|
||||
#include "rogue.h"
|
||||
|
||||
extern char rnd_terrain(), get_terrain();
|
||||
char rnd_terrain(void);
|
||||
char get_terrain(char one, char two, char three, char four);
|
||||
|
||||
/*
|
||||
* init_terrain:
|
||||
|
|
@ -23,7 +24,7 @@ extern char rnd_terrain(), get_terrain();
|
|||
*/
|
||||
|
||||
void
|
||||
init_terrain()
|
||||
init_terrain(void)
|
||||
{
|
||||
register struct room *rp;
|
||||
|
||||
|
|
@ -40,9 +41,7 @@ init_terrain()
|
|||
}
|
||||
|
||||
void
|
||||
do_terrain(basey, basex, deltay, deltax, fresh)
|
||||
int basey, basex, deltay, deltax;
|
||||
bool fresh;
|
||||
do_terrain(int basey, int basex, int deltay, int deltax, bool fresh)
|
||||
{
|
||||
register int cury, curx; /* Current y and x positions */
|
||||
|
||||
|
|
@ -140,7 +139,7 @@ bool fresh;
|
|||
*/
|
||||
|
||||
char
|
||||
rnd_terrain()
|
||||
rnd_terrain(void)
|
||||
{
|
||||
int chance = rnd(100);
|
||||
|
||||
|
|
@ -164,8 +163,7 @@ rnd_terrain()
|
|||
*/
|
||||
|
||||
char
|
||||
get_terrain(one, two, three, four)
|
||||
char one, two, three, four;
|
||||
get_terrain(char one, char two, char three, char four)
|
||||
{
|
||||
register int i;
|
||||
int forest = 0, mountain = 0, lake = 0, meadow = 0, total = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue