mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-01-03 07:19:56 +01:00
fixed 1.1 detection so that oal 1.1 stubs are loaded for major > 1
This commit is contained in:
parent
dbe9667c3d
commit
c3500a14d2
|
|
@ -180,7 +180,7 @@ public final class ALC11 {
|
|||
if(major >= 1) {
|
||||
|
||||
// checking for version 1.1+
|
||||
if(minor >= 1) {
|
||||
if(major > 1 || minor >= 1) {
|
||||
initNativeStubs();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue