Ref T437, fixed missing update of "m_simTransponder" which caused SB area changes to be ignored

* also added SELCAL hints
* sync m_simTransponder
This commit is contained in:
Klaus Basan
2018-11-20 17:39:33 +01:00
parent 7bd3d2793e
commit 034525316e
2 changed files with 13 additions and 4 deletions

View File

@@ -255,10 +255,12 @@ namespace BlackSimPlugin
bool changed = false;
if (selcal != m_selcal)
{
//! KB 2018-11 that would need to go to updateOwnAircraftFromSimulator if the simulator ever supports SELCAL
//! KB 2018-11 als we would need to send the value to FS9/FSX (currently we only deal with it on FS9/FSX level)
m_selcal = selcal;
changed = true;
}
//! \todo KB 8/2017 set FS9 SELCAL value
return changed;
}