1
0
Fork 0

Revert "Use the desciptors typename as the topic name"

This reverts commit 1f3d9c089a.
This commit is contained in:
Erik Hofman 2021-03-15 16:11:35 +01:00
parent 1f3d9c089a
commit 6e00c47d3d
3 changed files with 3 additions and 3 deletions

View file

@ -699,7 +699,7 @@ bool FGNativeCtrls::open() {
#if FG_HAVE_DDS
if ( io->get_type() == sgDDSType ) {
SG_DDS *dds = static_cast<SG_DDS*>(io);
dds->setup(&FG_DDS_Ctrls_desc, sizeof (FG_DDS_Ctrls));
dds->setup("FG_DDS_Ctrls" , &FG_DDS_Ctrls_desc, sizeof (FG_DDS_Ctrls));
}
#endif

View file

@ -739,7 +739,7 @@ bool FGNativeFDM::open() {
#if FG_HAVE_DDS
if ( io->get_type() == sgDDSType ) {
SG_DDS *dds = static_cast<SG_DDS*>(io);
dds->setup(&FG_DDS_FDM_desc, sizeof (FG_DDS_FDM));
dds->setup("FG_DDS_FDM" , &FG_DDS_FDM_desc, sizeof (FG_DDS_FDM));
}
#endif

View file

@ -474,7 +474,7 @@ bool FGNativeGUI::open() {
#if FG_HAVE_DDS
if ( io->get_type() == sgDDSType ) {
SG_DDS *dds = static_cast<SG_DDS*>(io);
dds->setup(&FG_DDS_GUI_desc, sizeof (FG_DDS_GUI));
dds->setup("FG_DDS_GUI" , &FG_DDS_GUI_desc, sizeof (FG_DDS_GUI));
}
#endif