From ee21885f135a042b5ab867eded37bae9463ae97e Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sun, 28 Apr 2024 15:38:57 -0700 Subject: [PATCH] add more missing initializers --- src/Main.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Main.cc b/src/Main.cc index d3669397..f5cbcfed 100644 --- a/src/Main.cc +++ b/src/Main.cc @@ -2400,6 +2400,7 @@ Action a_replay_ep3_battle_commands( .card_index = s->ep3_card_index, .map_index = s->ep3_map_index, .behavior_flags = 0x0092, + .opt_rand_stream = nullptr, .opt_rand_crypt = (seed >= 0) ? make_shared(seed) : nullptr, .tournament = nullptr, .trap_card_ids = {}, @@ -2444,6 +2445,7 @@ Action a_replay_ep3_battle_record( Episode3::BehaviorFlag::DISABLE_MASKING | Episode3::BehaviorFlag::LOG_COMMANDS_IF_LOBBY_MISSING), .opt_rand_stream = make_shared(rec->get_random_stream()), + .opt_rand_crypt = nullptr, .tournament = nullptr, .trap_card_ids = {}, };