equal
deleted
inserted
replaced
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 |