fix uninitialized debug flags in universe

This commit is contained in:
x-qq
2020-02-11 15:34:29 +02:00
parent feb1045feb
commit d314432664

View File

@@ -202,7 +202,9 @@ public:
cCurTown town;
cCurOut out;
fs::path file;
bool debug_mode, ghost_mode, node_step_through;
bool debug_mode { false };
bool ghost_mode { false };
bool node_step_through { false };
void clear_stored_pcs();
void import_legacy(legacy::stored_town_maps_type& old);