|
|
@ -82,10 +82,12 @@ game_draw_info ()
|
|
|
|
for (x = 0; x < bman.fieldsize.x; x++)
|
|
|
|
for (x = 0; x < bman.fieldsize.x; x++)
|
|
|
|
draw_stone (x, bman.fieldsize.y-1);
|
|
|
|
draw_stone (x, bman.fieldsize.y-1);
|
|
|
|
|
|
|
|
|
|
|
|
sprintf (text, "Net Option: ");
|
|
|
|
sprintf (text, "Net Option: [");
|
|
|
|
for (i = 0 ; i < MAX_PLAYERS; i++)
|
|
|
|
for (i = 0 ; i < MAX_PLAYERS; i++)
|
|
|
|
sprintf (text, " %3d ", bman.players[i].net.pkgopt.send_set);
|
|
|
|
sprintf (text, "%s%3d ", text, bman.players[i].net.pkgopt.send_set);
|
|
|
|
|
|
|
|
text[strlen(text)+1] = 0;
|
|
|
|
|
|
|
|
text[strlen(text)] = ']';
|
|
|
|
|
|
|
|
|
|
|
|
draw_text (0, gfx.res.y - gfx.font.size.y, text, 1);
|
|
|
|
draw_text (0, gfx.res.y - gfx.font.size.y, text, 1);
|
|
|
|
gfx_AddUpdateRect (0, gfx.res.y - gfx.font.size.y, gfx.res.x, gfx.font.size.y);
|
|
|
|
gfx_AddUpdateRect (0, gfx.res.y - gfx.font.size.y, gfx.res.x, gfx.font.size.y);
|
|
|
|
|
|
|
|
|
|
|
|