diff options
author | Chris Robinson <[email protected]> | 2012-04-19 22:50:11 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-04-19 22:50:11 -0700 |
commit | b023dbe7b87921a5b4eab0ed759e7b3dd04acf57 (patch) | |
tree | 1a222fbd4e317cfdd5811b6b2257b2c02abab39b /OpenAL32/Include/alMain.h | |
parent | 8092cd92058f3fa1ad42f8c46049c0bc39ae82ab (diff) |
Remove hungarian notation from the device and context structs
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 15747913..ca8d6340 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -539,7 +539,7 @@ struct ALCdevice_struct enum DevFmtChannels FmtChans; enum DevFmtType FmtType; - ALCchar *szDeviceName; + ALCchar *DeviceName; volatile ALCenum LastError; @@ -631,7 +631,7 @@ struct ALCcontext_struct { volatile RefCount ref; - ALlistener Listener; + ALlistener Listener; UIntMap SourceMap; UIntMap EffectSlotMap; @@ -645,7 +645,7 @@ struct ALCcontext_struct volatile ALfloat DopplerFactor; volatile ALfloat DopplerVelocity; - volatile ALfloat flSpeedOfSound; + volatile ALfloat SpeedOfSound; volatile ALenum DeferUpdates; struct ALsource **ActiveSources; |