From c58fedb03510b106ab9d3ae210cdaedfac54e559 Mon Sep 17 00:00:00 2001 From: Mr-Auto <36127424+Mr-Auto@users.noreply.github.com> Date: Mon, 27 May 2024 21:00:11 +0200 Subject: [PATCH] fix `star_count` in savedata --- src/game_api/savedata.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/game_api/savedata.hpp b/src/game_api/savedata.hpp index f0559f683..13804bfdc 100644 --- a/src/game_api/savedata.hpp +++ b/src/game_api/savedata.hpp @@ -67,7 +67,8 @@ struct ConstellationLine struct Constellation { - uint32_t star_count; + uint8_t star_count; + uint8_t unknown[3]; std::array stars; float scale; uint8_t line_count;