mirror of
https://git.zap.org.au/git/trader.git
synced 2024-12-04 14:46:45 -05:00
Keep the Intel C compiler quiet
By default, the Intel C compiler warns "enumerated type mixed with another type" when compiling this code. Explicit casts keep it quiet.
This commit is contained in:
parent
eb0ed43ce2
commit
5caf1ef165
@ -213,7 +213,7 @@ void exchange_stock (void)
|
|||||||
if (keycode_company[i] == (wchar_t) key) {
|
if (keycode_company[i] == (wchar_t) key) {
|
||||||
found = true;
|
found = true;
|
||||||
if (company[i].on_map) {
|
if (company[i].on_map) {
|
||||||
selection = i;
|
selection = (selection_t) i;
|
||||||
} else {
|
} else {
|
||||||
beep();
|
beep();
|
||||||
}
|
}
|
||||||
|
@ -294,7 +294,7 @@ selection_t get_move (void)
|
|||||||
for (i = 0, found = false; keycode_game_move[i] != L'\0'; i++) {
|
for (i = 0, found = false; keycode_game_move[i] != L'\0'; i++) {
|
||||||
if (keycode_game_move[i] == (wchar_t) key) {
|
if (keycode_game_move[i] == (wchar_t) key) {
|
||||||
found = true;
|
found = true;
|
||||||
selection = i;
|
selection = (selection_t) i;
|
||||||
|
|
||||||
curs_set(CURS_OFF);
|
curs_set(CURS_OFF);
|
||||||
left(curwin, 1, promptend, attr_normal, attr_choice,
|
left(curwin, 1, promptend, attr_normal, attr_choice,
|
||||||
@ -780,7 +780,7 @@ void try_start_new_company (int x, int y)
|
|||||||
company[i].name);
|
company[i].name);
|
||||||
txrefresh();
|
txrefresh();
|
||||||
|
|
||||||
galaxy_map[x][y] = COMPANY_TO_MAP(i);
|
galaxy_map[x][y] = (map_val_t) COMPANY_TO_MAP(i);
|
||||||
|
|
||||||
company[i].share_price = INITIAL_SHARE_PRICE;
|
company[i].share_price = INITIAL_SHARE_PRICE;
|
||||||
company[i].share_return = INITIAL_RETURN;
|
company[i].share_return = INITIAL_RETURN;
|
||||||
@ -986,7 +986,7 @@ void include_outpost (int num, int x, int y)
|
|||||||
|
|
||||||
assign_vals(x, y, left, right, up, down);
|
assign_vals(x, y, left, right, up, down);
|
||||||
|
|
||||||
galaxy_map[x][y] = COMPANY_TO_MAP(num);
|
galaxy_map[x][y] = (map_val_t) COMPANY_TO_MAP(num);
|
||||||
inc_share_price(num, SHARE_PRICE_INC_OUTPOST);
|
inc_share_price(num, SHARE_PRICE_INC_OUTPOST);
|
||||||
|
|
||||||
// Outposts next to stars are more valuable: increment again
|
// Outposts next to stars are more valuable: increment again
|
||||||
|
Loading…
Reference in New Issue
Block a user