From 967e56d828e056c13931570847359d93f98b7eee Mon Sep 17 00:00:00 2001 From: Eric Branlund Date: Thu, 15 Apr 2021 07:37:28 -0700 Subject: [PATCH] Adapt to upstream changes to init_angband() and reset_visuals(). --- src/main-cocoa.mm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main-cocoa.mm b/src/main-cocoa.mm index 80a1b9e73..a21bb673f 100644 --- a/src/main-cocoa.mm +++ b/src/main-cocoa.mm @@ -4607,7 +4607,7 @@ static errr Term_xtra_cocoa_react(void) if (arg_bigtile == use_bigtile && current_world_ptr->character_generated) { - reset_visuals(p_ptr, process_autopick_file_command); + reset_visuals(p_ptr); } } @@ -4615,7 +4615,7 @@ static errr Term_xtra_cocoa_react(void) if (current_world_ptr->character_generated) { /* Reset visuals */ - reset_visuals(p_ptr, process_autopick_file_command); + reset_visuals(p_ptr); } term_activate(angband_term[0]); @@ -5878,7 +5878,7 @@ static void init_windows(void) p_ptr->player_egid = getegid(); /* Initialise game */ - init_angband(p_ptr, process_autopick_file_command, FALSE); + init_angband(p_ptr, FALSE); /* Load possible graphics modes */ init_graphics_modes(); -- 2.11.0