From 3397e202c82cda0398ef4a642e74f2d864c5dc7d Mon Sep 17 00:00:00 2001 From: tron Date: Fri, 7 Oct 2005 07:35:15 +0000 Subject: (svn r3024) -Codechange: Another batch of replacements of int/uint/int16/byte/-1 with proper types and constants --- ship_gui.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ship_gui.c') diff --git a/ship_gui.c b/ship_gui.c index 898591482..c9ff4c5df 100644 --- a/ship_gui.c +++ b/ship_gui.c @@ -352,7 +352,7 @@ static void NewShipWndProc(Window *w, WindowEvent *e) int sel = WP(w,buildtrain_d).sel_index; int pos = w->vscroll.pos; EngineID engine_id = SHIP_ENGINES_INDEX; - int selected_id = -1; + EngineID selected_id = INVALID_ENGINE; do { if (HASBIT(e->player_avail, _local_player)) { @@ -368,7 +368,7 @@ static void NewShipWndProc(Window *w, WindowEvent *e) WP(w,buildtrain_d).sel_engine = selected_id; - if (selected_id != -1) { + if (selected_id != INVALID_ENGINE) { DrawShipPurchaseInfo(2, w->widget[4].top + 1, selected_id); } } @@ -384,14 +384,14 @@ static void NewShipWndProc(Window *w, WindowEvent *e) } } break; case 5: { /* build */ - int sel_eng = WP(w,buildtrain_d).sel_engine; - if (sel_eng != -1) + EngineID sel_eng = WP(w,buildtrain_d).sel_engine; + if (sel_eng != INVALID_ENGINE) DoCommandP(w->window_number, sel_eng, 0, CcBuildShip, CMD_BUILD_SHIP | CMD_MSG(STR_980D_CAN_T_BUILD_SHIP)); } break; case 6: { /* rename */ - int sel_eng = WP(w,buildtrain_d).sel_engine; - if (sel_eng != -1) { + EngineID sel_eng = WP(w,buildtrain_d).sel_engine; + if (sel_eng != INVALID_ENGINE) { WP(w,buildtrain_d).rename_engine = sel_eng; ShowQueryString(GetCustomEngineName(sel_eng), STR_9838_RENAME_SHIP_TYPE, 31, 160, w->window_class, w->window_number); -- cgit v1.2.3-70-g09d2