network_gui.c
changeset 1916 efad85af0599
parent 1899 98317b840d7b
child 2055 9361b56db8ba
equal deleted inserted replaced
1915:0d3195091244 1916:efad85af0599
   162 					// draw a lock if the server is password protected.
   162 					// draw a lock if the server is password protected.
   163 					if(cur_item->info.use_password)
   163 					if(cur_item->info.use_password)
   164 						DrawSprite(SPR_LOCK, 186, y-1);
   164 						DrawSprite(SPR_LOCK, 186, y-1);
   165 
   165 
   166 					// draw red or green icon, depending on compatibility with server.
   166 					// draw red or green icon, depending on compatibility with server.
   167 					DrawSprite(SPR_BLOT | (compatible?0x30d8000:0x30b8000), 195, y);
   167 					DrawSprite(SPR_BLOT | (compatible ? PALETTE_TO_GREEN : PALETTE_TO_RED), 195, y);
   168 
   168 
   169 					// draw flag according to server language
   169 					// draw flag according to server language
   170 					DrawSprite(SPR_FLAGS_BASE + cur_item->info.server_lang, 206, y);
   170 					DrawSprite(SPR_FLAGS_BASE + cur_item->info.server_lang, 206, y);
   171 				}
   171 				}
   172 
   172