diff options
author | Chris Robinson <[email protected]> | 2010-05-12 07:27:12 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-05-12 07:27:12 -0700 |
commit | a53e3dda75f329f6f2060e8e760a1a4f7edbe45a (patch) | |
tree | 38104808dcb3033975a7cb55e95ab77e974cb7aa /OpenAL32/Include | |
parent | 2220c22c907026d8f4229ebf8b9eb75fb29810c9 (diff) |
Don't needlessly expose a variable for the backends
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alMain.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index c40318a8..c1f06d65 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -439,8 +439,6 @@ struct ALCcontext_struct ALCcontext *next; }; -extern ALint RTPrioLevel; - ALCvoid ReleaseALC(ALCvoid); void AppendDeviceList(const ALCchar *name); @@ -472,7 +470,7 @@ 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, int def); -void EnableRTPrio(ALint level); +void SetRTPriority(void); void SetDefaultChannelOrder(ALCdevice *device); void SetDefaultWFXChannelOrder(ALCdevice *device); |