fix: clang

This commit is contained in:
Thomas Zobler
2025-12-17 14:56:29 +01:00
parent 35019d5f34
commit f07b45a239
2 changed files with 4 additions and 2 deletions

View File

@@ -408,7 +408,8 @@ namespace swift::misc::simulation::data
CData<TModelSetCacheP3D> m_modelCacheP3D { this, &CModelSetCaches::changedP3D }; //!< P3D cache
CData<TModelSetCacheXP> m_modelCacheXP { this, &CModelSetCaches::changedXP }; //!< XP cache
CData<TModelSetCacheFG> m_modelCacheFG { this, &CModelSetCaches::changedFG }; //!< FG cache
CData<TModelSetCacheMsfs2020> m_modelCacheMsfs2020 { this, &CModelSetCaches::changedMsfs2020 }; //!< MSFS2020 cache
CData<TModelSetCacheMsfs2020> m_modelCacheMsfs2020 { this,
&CModelSetCaches::changedMsfs2020 }; //!< MSFS2020 cache
CData<TModelSetCacheMsfs2024> m_modelCacheMsfs2024 { this,
&CModelSetCaches::changedMsfs2024 }; //!< MSFS2024 cache

View File

@@ -743,7 +743,8 @@ namespace swift::simplugin::msfs2024common
m_useSbOffsets = settings.isSbOffsetsEnabled();
if (this->getSimulatorPluginInfo().getSimulatorInfo().isMSFS2024())
{
m_useSbOffsets = false; // Always disable SbOffsets for MSFS2024. Using new transponder mode property directly
m_useSbOffsets =
false; // Always disable SbOffsets for MSFS2024. Using new transponder mode property directly
}
HRESULT hr = s_ok();