diff options
author | Chris Robinson <[email protected]> | 2013-10-28 17:23:19 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-10-28 17:23:19 -0700 |
commit | a407d5763949fdb421b38ac4f624b8e9193f33e5 (patch) | |
tree | 81bea7997332686f5633d252b1cd4b2f2dbbeb6b /Alc/backends/null.c | |
parent | 0a6eff6a890a4ae3327db542594a1d66fc645a05 (diff) |
Rename the support method to querySupport
Diffstat (limited to 'Alc/backends/null.c')
-rw-r--r-- | Alc/backends/null.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/backends/null.c b/Alc/backends/null.c index ab371747..9e762190 100644 --- a/Alc/backends/null.c +++ b/Alc/backends/null.c @@ -187,7 +187,7 @@ void ALCnullBackendFactory_deinit(ALCnullBackendFactory* UNUSED(self)) { } -ALCboolean ALCnullBackendFactory_support(ALCnullBackendFactory* UNUSED(self), ALCbackend_Type type) +ALCboolean ALCnullBackendFactory_querySupport(ALCnullBackendFactory* UNUSED(self), ALCbackend_Type type) { if(type == ALCbackend_Playback) return ALC_TRUE; |