aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--OpenAL32/Include/alAuxEffectSlot.h2
-rw-r--r--OpenAL32/Include/alMain.h4
-rw-r--r--OpenAL32/Include/alSource.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/OpenAL32/Include/alAuxEffectSlot.h b/OpenAL32/Include/alAuxEffectSlot.h
index fe63b39b..ac71c4ec 100644
--- a/OpenAL32/Include/alAuxEffectSlot.h
+++ b/OpenAL32/Include/alAuxEffectSlot.h
@@ -18,7 +18,7 @@ typedef struct ALeffectslot
ALfloat Gain;
ALboolean AuxSendAuto;
- ALboolean NeedsUpdate;
+ ALenum NeedsUpdate;
ALeffectState *EffectState;
ALfloat WetBuffer[BUFFERSIZE];
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index 75dd7ec8..641baf7c 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -514,7 +514,7 @@ struct ALCcontext_struct
ALenum LastError;
- ALboolean UpdateSources;
+ ALenum UpdateSources;
enum DistanceModel DistanceModel;
ALboolean SourceDistanceModel;
@@ -522,7 +522,7 @@ struct ALCcontext_struct
ALfloat DopplerFactor;
ALfloat DopplerVelocity;
ALfloat flSpeedOfSound;
- ALboolean DeferUpdates;
+ ALenum DeferUpdates;
struct ALsource **ActiveSources;
ALsizei ActiveSourceCount;
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h
index 735e669c..f76cd2c1 100644
--- a/OpenAL32/Include/alSource.h
+++ b/OpenAL32/Include/alSource.h
@@ -119,7 +119,7 @@ typedef struct ALsource
ALfloat history[MAXCHANNELS];
} Send[MAX_SENDS];
} Params;
- ALboolean NeedsUpdate;
+ ALenum NeedsUpdate;
ALvoid (*Update)(struct ALsource *self, const ALCcontext *context);