X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Finit.c;h=3e0f01dbaba6950025412f58e1539ed5320fb4c2;hb=73b48f8afe7e1e1faf0e87436d7d74b27bba5f27;hp=ff9f0344a003542288b8b6a275214456a213a4a5;hpb=33775032e403b28c89ee7c60b64a456d30a013fb;p=rocksndiamonds.git diff --git a/src/init.c b/src/init.c index ff9f0344..3e0f01db 100644 --- a/src/init.c +++ b/src/init.c @@ -5064,6 +5064,7 @@ static void InitSetup() static void InitGameInfo() { game.restart_level = FALSE; + game.restart_game_message = NULL; } static void InitPlayerInfo() @@ -5074,9 +5075,13 @@ static void InitPlayerInfo() local_player = &stored_player[0]; for (i = 0; i < MAX_PLAYERS; i++) - stored_player[i].connected = FALSE; + { + stored_player[i].connected_locally = FALSE; + stored_player[i].connected_network = FALSE; + } - local_player->connected = TRUE; + local_player->connected_locally = TRUE; + local_player->connected_network = TRUE; } static void InitArtworkInfo() @@ -5431,6 +5436,7 @@ void InitGfx() InitGfxDrawBusyAnimFunction(DrawInitAnim); InitGfxDrawGlobalAnimFunction(DrawGlobalAnimations); InitGfxDrawGlobalBorderFunction(DrawMaskedBorderToTarget); + InitGfxDrawTileCursorFunction(DrawTileCursor); gfx.fade_border_source_status = global.border_status; gfx.fade_border_target_status = global.border_status; @@ -6008,6 +6014,7 @@ void OpenAll() InitVideoDisplay(); InitVideoBuffer(WIN_XSIZE, WIN_YSIZE, DEFAULT_DEPTH, setup.fullscreen); + InitTileCursorInfo(); InitOverlayInfo(); print_timestamp_time("[init video stuff]");