From ad6a4668378b32fd7c638ccc8c353c967b556898 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 28 Feb 2022 17:32:56 +0100 Subject: [PATCH] gamedata:: store vid data more carefully --- multigame.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/multigame.cpp b/multigame.cpp index 129e0710..d4730eb3 100644 --- a/multigame.cpp +++ b/multigame.cpp @@ -64,7 +64,11 @@ void gamedata_all(gamedata& gd) { gd.store(hybrid::underlying); gd.store(hybrid::csteps); gd.store(hybrid::underlying_cgip); - gd.store_ptr(vid); + gd.store_ptr(vid.projection_config); + gd.store_ptr(vid.rug_config); + gd.store(vid.yshift); + gd.store(vid.plevel_factor); + gd.store(vid.binary_width); gd.store(sightrange_bonus); gd.store(genrange_bonus); gd.store(gamerange_bonus);