Skip to content

Commit

Permalink
Sound: Force-FMOD-instance is on by default for Win/Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
TwinFan committed May 28, 2023
1 parent 1152d01 commit 29ac176
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Include/DataRefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ const int DEF_CONTR_ALT_MIN = 25000; ///< [ft] Auto Contrails: Minimu
const int DEF_CONTR_ALT_MAX = 45000; ///< [ft] Auto Contrails: Maximum altitude
const int DEF_CONTR_LIFETIME = 25; ///< [s] Contrail default time to live
const bool DEF_CONTR_MULTI = false; ///< Auto-create multiple or just a single contrail?
#if LIN // On Linux, there more reports of issues if using separate FMOD, so we keep it disabled by default:
const bool DEF_SND_FMOD_INST = false; ///< Enforce using our own FMOD instance instead of X-Plane's?
#else // There have been various CTD reports with complex aircraft if using X-Plane's FMOD, so we keep this enabled by default:
const bool DEF_SND_FMOD_INST = true; ///< Enforce using our own FMOD instance instead of X-Plane's?
#endif
const int DEF_SUI_TRANSP = 0; ///< Settings UI: transaprent background?
const int MIN_NETW_TIMEOUT = 5; ///< [s] minimum network request timeout
const int DEF_NETW_TIMEOUT = 90; ///< [s] of network request timeout
Expand Down
6 changes: 4 additions & 2 deletions docs/readme.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,10 @@ <h3>v3.4.1</h3>

<ul>
<li>
Added Advanced configuration option to force a separate FMOD instance, could avoid
<a href="https://forums.x-plane.org/index.php?/forums/topic/288846-live-traffic-ctd-x-plane-1205/">FMOD interference with other plugins/FlyWithLua</a>.
Added Advanced configuration option to force a separate FMOD instance, avoids
<a href="https://forums.x-plane.org/index.php?/forums/topic/288846-live-traffic-ctd-x-plane-1205/">FMOD interference with other plugins/FlyWithLua</a>
that caused CTDs e.g. with Zibo B738 or Thranda C206.<br>
Windows, Mac: Enabled by default; Linux: Disabled by default
</li>
</ul>

Expand Down

0 comments on commit 29ac176

Please sign in to comment.