diff options
author | Chris Robinson <[email protected]> | 2018-12-08 21:58:44 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-12-08 21:58:44 -0800 |
commit | e5db9b237847db74a9228e2da925c0b6f127ab28 (patch) | |
tree | 4582f41a0ebfdf3296dbc6f6f06f36c25cfe479c /OpenAL32 | |
parent | a4009c47e7086611e70bafdf36666b40209f6608 (diff) |
Avoid static global initialization functions
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 3cd9b557..666cd8c0 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -487,8 +487,8 @@ void aluHandleDisconnect(ALCdevice *device, const char *msg, ...) DECL_FORMAT(pr extern MixerFunc MixSamples; extern RowMixerFunc MixRowSamples; -extern ALfloat ConeScale; -extern ALfloat ZScale; -extern ALboolean OverrideReverbSpeedOfSound; +extern const ALfloat ConeScale; +extern const ALfloat ZScale; +extern const ALboolean OverrideReverbSpeedOfSound; #endif |