Revert "Use the desciptors typename as the topic name"
This reverts commit 1f3d9c089a
.
This commit is contained in:
parent
1f3d9c089a
commit
6e00c47d3d
3 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue