diff options
author | Mathieu Féry <[email protected]> | 2023-12-04 17:14:48 +0100 |
---|---|---|
committer | Mathieu Féry <[email protected]> | 2023-12-05 13:55:40 +0100 |
commit | 41a2967c25a3be64733262eb8b1f1c6b23cfd1dc (patch) | |
tree | 0bef72efbbea9ec228060ccd180444ebba6811fb /make/config/joal-alc-CustomJavaCode.java | |
parent | c989989b1221639933aeabebd65d5453eac0b0a7 (diff) |
feat(alc): Fix typo of following methods in ALC api :
* aclEnumerationExtIsPresent -> alcEnumerationExtIsPresent
* aclEnumerateAllExtIsPresent -> alcEnumerateAllExtIsPresent
Diffstat (limited to 'make/config/joal-alc-CustomJavaCode.java')
-rw-r--r-- | make/config/joal-alc-CustomJavaCode.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/config/joal-alc-CustomJavaCode.java b/make/config/joal-alc-CustomJavaCode.java index 6615c01..e5b4e1f 100644 --- a/make/config/joal-alc-CustomJavaCode.java +++ b/make/config/joal-alc-CustomJavaCode.java @@ -1,8 +1,8 @@ /** Specify if ALC_ENUMERATION_EXT is present */ -public boolean aclEnumerationExtIsPresent(); +public boolean alcEnumerationExtIsPresent(); /** Specify if ALC_ENUMERATE_ALL_EXT is present */ -public boolean aclEnumerateAllExtIsPresent(); +public boolean alcEnumerateAllExtIsPresent(); /** Specify if call of alGetString(device, param) must must retrun a double null terminted string */ |