aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2009-12-26 07:42:57 -0800
committerChris Robinson <[email protected]>2009-12-26 07:42:57 -0800
commit6e9ce47a4b0f82e844483d18632c67ac169d2db2 (patch)
treeddb915c6462514fde1f146cce5e4adf21cbbe191 /OpenAL32
parent89f59c0e1c37bd63745bb9ba8ea454391aa33344 (diff)
GetConfigValueBool should take an int, not a float
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index fc9cf71d..ed03bea8 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -381,7 +381,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);
+int GetConfigValueBool(const char *blockName, const char *keyName, int def);
void EnableRTPrio(ALint level);