diff options
author | Chris Robinson <[email protected]> | 2010-11-28 19:52:17 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-11-28 19:52:17 -0800 |
commit | da4f5c6f96b04094bf37e5c7ac393a7bfbfbb681 (patch) | |
tree | f467c94351e81f7ede5f3ac4847a8cbbe117b516 /OpenAL32/Include/alMain.h | |
parent | f09ae196a83c8a64fdd29e60b30dc51a367cb1c9 (diff) |
Uninline some functions
Also add -Winline to the compiler command line to watch for future inline problems
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 41189010..1bfcc0f1 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -324,26 +324,7 @@ void InitUIntMap(UIntMap *map); void ResetUIntMap(UIntMap *map); ALenum InsertUIntMapEntry(UIntMap *map, ALuint key, ALvoid *value); void RemoveUIntMapKey(UIntMap *map, ALuint key); - -static __inline ALvoid *LookupUIntMapKey(UIntMap *map, ALuint key) -{ - if(map->size > 0) - { - ALsizei low = 0; - ALsizei high = map->size - 1; - while(low < high) - { - ALsizei mid = low + (high-low)/2; - if(map->array[mid].key < key) - low = mid + 1; - else - high = mid; - } - if(map->array[low].key == key) - return map->array[low].value; - } - return NULL; -} +ALvoid *LookupUIntMapKey(UIntMap *map, ALuint key); struct ALCdevice_struct |