You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adjusting fadeLevel increments in spkr_toggle() makes it possible to change softness of sound. Softer sound might give you better audio for speech synthesis, also some people might prefer that.
Harder sound might give you more accurate sound on average games.
Hard: fadeLevel *= 0.16; or below
Medium: fadeLevel *= 0.64;
Soft: fadeLevel *= 0.75; or above
The text was updated successfully, but these errors were encountered:
Adjusting
fadeLevel
increments inspkr_toggle()
makes it possible to change softness of sound. Softer sound might give you better audio for speech synthesis, also some people might prefer that.Harder sound might give you more accurate sound on average games.
fadeLevel *= 0.16;
or belowfadeLevel *= 0.64;
fadeLevel *= 0.75;
or aboveThe text was updated successfully, but these errors were encountered: