diff options
author | Chris Robinson <[email protected]> | 2012-01-31 03:43:52 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-01-31 03:43:52 -0800 |
commit | 0107e74986edf8e184921ddf853a31d1f9e61dee (patch) | |
tree | c01d9dc794acb658d7c9f9980c58f4f9e0a8b7d7 /Alc/ALc.c | |
parent | c605e06e07a8d7ec6af67f72709d5ab8a3760be0 (diff) |
Use an enum for static const values
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1059,10 +1059,12 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList) // Check for attributes if(attrList && attrList[0]) { - static const ALCint GotFreq = 1<<0; - static const ALCint GotChans = 1<<1; - static const ALCint GotType = 1<<2; - static const ALCint GotAll = GotFreq|GotChans|GotType; + enum { + GotFreq = 1<<0, + GotChans = 1<<1, + GotType = 1<<2, + GotAll = GotFreq|GotChans|GotType + }; ALCuint freq, numMono, numStereo, numSends; enum DevFmtChannels schans; enum DevFmtType stype; |