mirror of
https://git.zap.org.au/git/trader.git
synced 2024-11-03 17:27:29 -05:00
Rename the global variables map and move
Rename the global array variables map[] and move[] to galaxy_map[] and game_move[] respectively to prevent clashes with functions from various libraries (particularly NCurses).
This commit is contained in:
parent
18fde51d30
commit
ab6f936f3f
@ -54,8 +54,8 @@ const char *company_names[MAX_COMPANIES] = {
|
||||
|
||||
company_info_t company[MAX_COMPANIES]; // Array of companies
|
||||
player_info_t player[MAX_PLAYERS]; // Array of players
|
||||
map_val_t map[MAX_X][MAX_Y]; // Map of the galaxy
|
||||
move_rec_t move[NUMBER_MOVES]; // Current moves
|
||||
map_val_t galaxy_map[MAX_X][MAX_Y]; // Map of the galaxy
|
||||
move_rec_t game_move[NUMBER_MOVES]; // Current moves
|
||||
|
||||
double interest_rate; // Current interest rate
|
||||
double credit_limit; // Credit limit of current player
|
||||
|
@ -118,8 +118,8 @@ extern const char *company_names[MAX_COMPANIES];
|
||||
|
||||
extern company_info_t company[MAX_COMPANIES]; // Array of companies
|
||||
extern player_info_t player[MAX_PLAYERS]; // Array of players
|
||||
extern map_val_t map[MAX_X][MAX_Y]; // Map of the galaxy
|
||||
extern move_rec_t move[NUMBER_MOVES]; // Current moves
|
||||
extern map_val_t galaxy_map[MAX_X][MAX_Y]; // Map of the galaxy
|
||||
extern move_rec_t game_move[NUMBER_MOVES]; // Current moves
|
||||
|
||||
extern double interest_rate; // Current interest rate
|
||||
extern double credit_limit; // Credit limit of current player
|
||||
|
Loading…
Reference in New Issue
Block a user