diff options
author | Chris Robinson <[email protected]> | 2009-09-15 22:18:13 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-09-15 22:18:13 -0700 |
commit | 49648fe22dec8fb5a783d8a7e3929b3231f6f4f4 (patch) | |
tree | 91476b2a2a76072128fe586400577fadfc179080 /OpenAL32 | |
parent | 9f037e89802a7b4fc6c287bab97b85050bbd6721 (diff) |
Make a GetConfigValueBool function and use it
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index cc48aee4..3205e467 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -327,6 +327,7 @@ void FreeALConfig(void); const char *GetConfigValue(const char *blockName, const char *keyName, const char *def); int GetConfigValueInt(const char *blockName, const char *keyName, int def); float GetConfigValueFloat(const char *blockName, const char *keyName, float def); +int GetConfigValueBool(const char *blockName, const char *keyName, float def); ALCboolean ALCAPIENTRY alcMakeCurrent(ALCcontext *context); ALCcontext* ALCAPIENTRY alcGetThreadContext(void); |