From e5670aab3ca6d5158a4f1c5ae430aece54eac3bf Mon Sep 17 00:00:00 2001 From: Evan Ramos Date: Wed, 4 Oct 2023 21:15:08 -0500 Subject: [PATCH] Blood: Fix missing field initializers in gSingleGameOptions --- source/blood/src/levels.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blood/src/levels.cpp b/source/blood/src/levels.cpp index 04e47ba097..a2164819fd 100644 --- a/source/blood/src/levels.cpp +++ b/source/blood/src/levels.cpp @@ -45,7 +45,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. GAMEOPTIONS gGameOptions; GAMEOPTIONS gSingleGameOptions = { - 0, 2, 0, 0, "", "", 2, "", "", 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 3600, 1800, 1800, 7200 + 0, 2, 0, 0, "", "", 2, "", "", 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 3600, 1800, 1800, 7200, + 0, 0, LOSTONDEATH, "", }; EPISODEINFO gEpisodeInfo[kMaxEpisodes+1];