From: curt Date: Thu, 12 Jul 2001 23:34:16 +0000 (+0000) Subject: Made the following properties archivable: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4bd5a0ab2962b676419212fc9272a3fcefce0246;p=flightgear.git Made the following properties archivable: - /sim/panel/visibility - /sim/panel/x-offset - /sim/panel/y-offset --- diff --git a/src/Cockpit/panel.cxx b/src/Cockpit/panel.cxx index 95215723b..c83e3d02f 100644 --- a/src/Cockpit/panel.cxx +++ b/src/Cockpit/panel.cxx @@ -215,8 +215,11 @@ void FGPanel::bind () { fgTie("/sim/panel/visibility", &_visibility); + fgSetArchivable("/sim/panel/visibility"); fgTie("/sim/panel/x-offset", &_x_offset); + fgSetArchivable("/sim/panel/x-offset"); fgTie("/sim/panel/y-offset", &_y_offset); + fgSetArchivable("/sim/panel/y-offset"); _bound = true; }