aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2016-09-24 14:29:27 -0700
committerChris Robinson <[email protected]>2016-09-24 14:29:27 -0700
commit24f9a0f2aed5b0770af1633ab4a2e2832462294e (patch)
treec199cd4f151ee986026c518e5425612091852179 /OpenAL32/Include
parentd89624b03c2622c7deb2104ddf9318b131de67ab (diff)
Remove some more unnecessary volatiles
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r--OpenAL32/Include/alMain.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index ac537978..356a749a 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -733,12 +733,12 @@ struct ALCcontext_struct {
ATOMIC(ALenum) LastError;
- volatile enum DistanceModel DistanceModel;
- volatile ALboolean SourceDistanceModel;
+ enum DistanceModel DistanceModel;
+ ALboolean SourceDistanceModel;
- volatile ALfloat DopplerFactor;
- volatile ALfloat DopplerVelocity;
- volatile ALfloat SpeedOfSound;
+ ALfloat DopplerFactor;
+ ALfloat DopplerVelocity;
+ ALfloat SpeedOfSound;
ATOMIC(ALenum) DeferUpdates;
RWLock PropLock;